/* style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo svg {
    width: 250px;
    height: 60px;
}

.logo .circle {
    fill: #2e7d32;
}

.logo .leaf {
    fill: #4caf50;
}

.logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    fill: #1b5e20;
}

.logo .logo-tagline {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    fill: #4caf50;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #4caf50;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #4caf50;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #4caf50;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #4caf50;
    color: #4caf50;
}

.btn-outline:hover {
    background-color: #4caf50;
    color: #fff;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1b5e20;
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 40px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #4caf50;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Index Page Styles */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('interviews.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Featured Content */
.featured-content {
    padding: 60px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-grid article {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-grid article:hover {
    transform: translateY(-5px);
}

.featured-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-grid h3 {
    font-size: 24px;
    padding: 20px;
}

.featured-grid p {
    padding: 0 20px 20px;
    color: #666;
}

/* Latest News Section */
.latest-news,
.research-highlights,
.interviews-preview {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.news-grid,
.research-grid,
.interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-grid article,
.research-grid article,
.interviews-grid article {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-grid h3,
.research-grid h3,
.interviews-grid h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* Take Action Section */
.take-action {
    padding: 60px 0;
    background-color: #fff;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.action-card {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.action-card:hover {
    background-color: #e8f5e9;
}

.action-card i {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: #4caf50;
    color: #fff;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
}

#subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#subscribe-form input[type="text"],
#subscribe-form input[type="email"] {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    max-width: 250px;
}

#subscribe-form label {
    font-size: 14px;
}

#subscribe-form button {
    margin: 0 auto;
}

.privacy-notice {
    font-size: 12px;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: #1b5e20;
    color: #fff;
    padding: 40px 0;
    font-size: small;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-about svg {
    width: 100px;
    height: 25px;
    margin-top: 20px;
    padding:auto;
    background: #ccc;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: #e8f5e9;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons i {
    font-size: 20px;
    color: #e8f5e9;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

.climate-pledge {
    font-size: 12px;
    margin-top: 10px;
}

.climate-pledge i {
    margin-right: 5px;
}

/* Support Page Styles */
/* Support Hero Section */
.support-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('tough.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.support-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.support-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Support Options Section */
.support-options {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.support-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.support-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.option-icon i {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 24px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.option-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Donation Card */
.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.amount-btn {
    background-color: #e8f5e9;
    color: #4caf50;
    border: 1px solid #4caf50;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.amount-btn:hover,
.amount-btn.selected {
    background-color: #4caf50;
    color: #fff;
}

.custom-amount {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 120px;
    font-size: 14px;
    text-align: center;
}

/* Membership Levels */
.membership-levels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.level {
    background-color: #f4f4f4;
    border-radius: 5px;
    padding: 15px;
    text-align: left;
}

.level h4 {
    font-size: 18px;
    color: #1b5e20;
    margin-bottom: 5px;
}

.level p {
    font-size: 14px;
    color: #666;
}

/* Volunteer Areas */
.volunteer-areas {
    text-align: left;
    margin-bottom: 20px;
}

.volunteer-areas p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.volunteer-areas i {
    color: #4caf50;
    margin-right: 10px;
}

/* Support Impact Section */
.support-impact {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.support-impact h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 40px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat {
    padding: 20px;
}

.stat h3 {
    font-size: 28px;
    color: #4caf50;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    color: #666;
}

/* Support Partners Section */
.support-partners {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.support-partners h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 40px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.partners-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0);
}

.partner-note {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 20px auto;
}

/* About Page Styles */
/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('news.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Mission Section */
.about-mission {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.mission-content h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* About Values Section */
.about-values {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.about-values h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.value-card i {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

/* About Team Section */
.about-team {
    padding: 60px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.about-team h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-grid .team-member {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-grid .team-member:hover {
    transform: translateY(-5px);
}

.team-grid .team-member img {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    display: block;
    margin: 0 auto 1rem; /* Centers the image and adds spacing below */
    border: 2px solid #2e7d32; /* Green border for consistency */
}

.team-grid .team-member h3 {
    font-size: 20px;
    color: #1b5e20;
    margin-bottom: 10px;
}

.team-grid .team-member p {
    font-size: 14px;
    color: #666;
}

/* About Join Section */
.about-join {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.join-content h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.join-content .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
}

/* News Page Styles */
/* News Hero Section */
.news-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('climate news.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.news-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.news-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* News Archive Section */
.news-archive {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.news-archive .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* News Filter Controls */
.news-archive .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.news-archive .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-archive .filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

.news-archive .filter-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.news-archive .filter-group select:focus {
    border-color: #4caf50;
    outline: none;
}

/* News Grid */
.news-archive .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-grid .news-article {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-grid .news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-grid .news-article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.news-grid .news-article h3 {
    font-size: 22px;
    color: #1b5e20;
    padding: 15px 20px;
    margin: 0;
}

.news-grid .news-article p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 15px;
    line-height: 1.6;
}

.news-grid .news-article .category {
    font-size: 14px;
    color: #4caf50;
    padding: 0 20px 10px;
    font-weight: 600;
}

.news-grid .news-article .date {
    font-size: 14px;
    color: #999;
    padding: 0 20px 15px;
}

.news-grid .news-article a {
    display: inline-block;
    padding: 0 20px 20px;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-grid .news-article a:hover {
    color: #388e3c;
    text-decoration: underline;
}

/* News Pagination */
.news-archive .pagination {
    text-align: center;
    margin-top: 40px;
}

#load-more {
    padding: 12px 24px;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#load-more:hover {
    background-color: #4caf50;
    color: #fff;
}

/* Research Page Styles */
/* Research Hero Section */
.research-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('tough.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.research-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.research-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Research Archive Section */
.research-archive {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.research-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.research-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Research Filter Controls */
.research-archive .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.research-archive .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.research-archive .filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

.research-archive .filter-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.research-archive .filter-group select:focus {
    border-color: #4caf50;
    outline: none;
}

/* Research Grid */
.research-archive .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.research-grid .research-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-grid .research-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.research-grid .research-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.research-grid .research-item h3 {
    font-size: 22px;
    color: #1b5e20;
    padding: 15px 20px;
    margin: 0;
}

.research-grid .research-item p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 15px;
    line-height: 1.6;
}

.research-grid .research-item .topic {
    font-size: 14px;
    color: #4caf50;
    padding: 0 20px 10px;
    font-weight: 600;
}

.research-grid .research-item .year {
    font-size: 14px;
    color: #999;
    padding: 0 20px 15px;
}

.research-grid .research-item a {
    display: inline-block;
    padding: 0 20px 20px;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.research-grid .research-item a:hover {
    color: #388e3c;
    text-decoration: underline;
}

/* Research Resources Section */
.research-resources {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.research-resources h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.resource-card i {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 22px;
    color: #1b5e20;
    margin-bottom: 15px;
}

.resource-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Interviews Page Styles */
/* Interviews Hero Section */
.interviews-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('interviews.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.interviews-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.interviews-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Interviews Archive Section */
.interviews-archive {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.interviews-archive .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Interviews Filter Controls */
.interviews-archive .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.interviews-archive .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.interviews-archive .filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

.interviews-archive .filter-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.interviews-archive .filter-group select:focus {
    border-color: #4caf50;
    outline: none;
}

/* Interviews Grid */
.interviews-archive .interviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.interviews-grid .interview-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interviews-grid .interview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.interviews-grid .interview-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.interviews-grid .interview-item h3 {
    font-size: 22px;
    color: #1b5e20;
    padding: 15px 20px;
    margin: 0;
}

.interviews-grid .interview-item p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 15px;
    line-height: 1.6;
}

.interviews-grid .interview-item .interviewee-type {
    font-size: 14px;
    color: #4caf50;
    padding: 0 20px 10px;
    font-weight: 600;
}

.interviews-grid .interview-item .format {
    font-size: 14px;
    color: #999;
    padding: 0 20px 15px;
}

.interviews-grid .interview-item a {
    display: inline-block;
    padding: 0 20px 20px;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.interviews-grid .interview-item a:hover {
    color: #388e3c;
    text-decoration: underline;
}

/* Interview CTA Section */
.interview-cta {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.cta-content .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
}

/* Petitions Page Styles */
/* Petitions Hero Section */
.petitions-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('tough.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.petitions-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.petitions-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Petitions Archive Section */
.petitions-archive {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.petitions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.petitions-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Petitions Filter Controls */
.petitions-archive .filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.petitions-archive .filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.petitions-archive .filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

.petitions-archive .filter-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.petitions-archive .filter-group select:focus {
    border-color: #4caf50;
    outline: none;
}

/* Petitions Grid */
.petitions-archive .petitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.petitions-grid .petition-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.petitions-grid .petition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.petitions-grid .petition-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.petitions-grid .petition-item h3 {
    font-size: 22px;
    color: #1b5e20;
    padding: 15px 20px;
    margin: 0;
}

.petitions-grid .petition-item p {
    font-size: 16px;
    color: #666;
    padding: 0 20px 15px;
    line-height: 1.6;
}

.petitions-grid .petition-item .focus {
    font-size: 14px;
    color: #4caf50;
    padding: 0 20px 10px;
    font-weight: 600;
}

.petitions-grid .petition-item .status {
    font-size: 14px;
    color: #999;
    padding: 0 20px 15px;
}

.petitions-grid .petition-item a {
    display: inline-block;
    padding: 0 20px 20px;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.petitions-grid .petition-item a:hover {
    color: #388e3c;
    text-decoration: underline;
}

/* Start Petition Section */
.start-petition {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.start-petition-content h2 {
    font-size: 32px;
    color: #1b5e20;
    margin-bottom: 20px;
}

.start-petition-content p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 20px;
}

.start-petition-content .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* General */
    .hero h1,
    .support-hero h1,
    .about-hero h1,
    .news-hero h1,
    .research-hero h1,
    .interviews-hero h1,
    .petitions-hero h1 {
        font-size: 32px;
    }

    .hero p,
    .support-hero p,
    .about-hero p,
    .news-hero p,
    .research-hero p,
    .interviews-hero p,
    .petitions-hero p {
        font-size: 16px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section-title,
    .support-impact h2,
    .support-partners h2,
    .about-values h2,
    .about-team h2,
    .join-content h2,
    .research-resources h2,
    .cta-content h2,
    .start-petition-content h2 {
        font-size: 24px;
    }

    /* Index Page */
    .form-group {
        flex-direction: column;
        align-items: center;
    }

    #subscribe-form input[type="text"],
    #subscribe-form input[type="email"] {
        max-width: 100%;
    }

    /* Support Page */
    .options-grid,
    .impact-stats {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        flex-direction: column;
        align-items: center;
    }

    .amount-btn,
    .custom-amount {
        width: 100%;
        max-width: 200px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    /* About Page */
    .about-mission .container {
        grid-template-columns: 1fr;
    }

    .mission-image {
        order: -1;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* News Page */
    .news-archive .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .news-archive .filter-group {
        width: 100%;
        max-width: 300px;
    }

    .news-archive .filter-group select {
        width: 100%;
    }

    .news-archive .news-grid {
        grid-template-columns: 1fr;
    }

    /* Research Page */
    .research-archive .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .research-archive .filter-group {
        width: 100%;
        max-width: 300px;
    }

    .research-archive .filter-group select {
        width: 100%;
    }

    .research-archive .research-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    /* Interviews Page */
    .interviews-archive .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .interviews-archive .filter-group {
        width: 100%;
        max-width: 300px;
    }

    .interviews-archive .filter-group select {
        width: 100%;
    }

    .interviews-archive .interviews-grid {
        grid-template-columns: 1fr;
    }

    /* Petitions Page */
    .petitions-archive .filter-controls {
        flex-direction: column;
        align-items: center;
    }

    .petitions-archive .filter-group {
        width: 100%;
        max-width: 300px;
    }

    .petitions-archive .filter-group select {
        width: 100%;
    }

    .petitions-archive .petitions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* General */
    .logo svg {
        width: 200px;
        height: 50px;
    }

    .hero,
    .support-hero,
    .about-hero,
    .news-hero,
    .research-hero,
    .interviews-hero,
    .petitions-hero {
        padding: 60px 20px;
    }

    .hero h1,
    .support-hero h1,
    .about-hero h1,
    .news-hero h1,
    .research-hero h1,
    .interviews-hero h1,
    .petitions-hero h1 {
        font-size: 24px;
    }

    .hero p,
    .support-hero p,
    .about-hero p,
    .news-hero p,
    .research-hero p,
    .interviews-hero p,
    .petitions-hero p {
        font-size: 14px;
    }

    .section-title,
    .support-impact h2,
    .support-partners h2,
    .about-values h2,
    .about-team h2,
    .join-content h2,
    .research-resources h2,
    .cta-content h2,
    .start-petition-content h2 {
        font-size: 20px;
    }

    /* Index Page */
    .featured-grid img,
    .news-grid article img,
    .research-grid article img,
    .interviews-grid article img {
        height: 150px;
    }

    .featured-grid h3,
    .news-grid h3,
    .research-grid h3,
    .interviews-grid h3 {
        font-size: 20px;
    }

    /* Support Page */
    .option-card {
        padding: 20px;
    }

    .stat h3 {
        font-size: 24px;
    }

    /* About Page */
    .value-card,
    .team-grid .team-member {
        padding: 20px;
    }

    .team-grid .team-member img {
        height: 150px;
    }

    /* News Page */
    .news-grid .news-article h3 {
        font-size: 20px;
    }

    .news-grid .news-article p {
        font-size: 14px;
    }

    /* Research Page */
    .research-grid .research-item img {
        height: 150px;
    }

    .research-grid .research-item h3 {
        font-size: 20px;
    }

    .research-grid .research-item p {
        font-size: 14px;
    }

    /* Interviews Page */
    .interviews-grid .interview-item img {
        height: 150px;
    }

    .interviews-grid .interview-item h3 {
        font-size: 20px;
    }

    .interviews-grid .interview-item p {
        font-size: 14px;
    }

    /* Petitions Page */
    .petitions-grid .petition-item img {
        height: 150px;
    }

    .petitions-grid .petition-item h3 {
        font-size: 20px;
    }

    .petitions-grid .petition-item p {
        font-size: 14px;
    }
}