body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px; 
}

h1, h2, h3 {
    font-family: 'Montserrat', "Book Antiqua", Palantino, Garamond, serif;
}

p, li {
    font-size: 20px; 
    line-height: 1.6;
}

.conservation-content {
    padding: 1.5rem;
    max-width: 1800px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/*main sections */
.threat-section,
.conservation-section {
    background-color: #e18951;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 2rem;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-content {
    flex: 1;
}

.side-image {
    margin: 0 auto;
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.side-image img {
    width: 100%;
    display: block;
}

.side-image figcaption {
    background-color: #f4f4f4;
    padding: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

.email-updates {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffefe5;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center; 
}

.dropdown-container {
    margin: 1.5rem auto; 
    max-width: 500px;
    position: relative;
}

.dropdown-toggle {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.dropdown-label {
    display: block;
    padding: 1rem;
    background-color: #6b5b95;
    color: white;
    border: 2px solid #584c7c;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.dropdown-label:hover {
    background-color: #584c7c;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 100%;
    margin-top: 0.5rem;
    border: 2px solid #6b5b95;
    border-radius: 5px;
    padding: 1.5rem;
    z-index: 2;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.dropdown-toggle:checked + .dropdown-label + .dropdown-content {
    display: block;
}

.option {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-bottom: 1px solid #f4f4f4;
}

.option label {
    margin-left: 0.5rem;
    cursor: pointer;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    width: auto;
    display: inline-block;
}

.email-field {
    margin: 1.5rem 0;
}

.email-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    width: 100%;
}

.email-field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.subscribe-btn {
    background-color: #a81919;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 1.1rem;
}

.subscribe-btn:hover {
    background-color: #8a1515;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
    }
    
    .threat-section .content-wrapper {
        flex-direction: row;
    }
    
    .conservation-section .content-wrapper {
        flex-direction: row-reverse;
    }
    
    .side-image {
        flex: 1;
        margin: 0;
    }
    
    .text-content {
        flex: 2;
    }
}

@media (max-width: 767px) {
    .conservation-content {
        padding: 1rem;
    }
    
    .threat-section,
    .conservation-section {
        padding: 1.5rem;
    }
    
    .side-image {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .conservation-content {
        max-width: 1800px;
    }
    
    .side-image {
        max-width: 600px;
    }
}