.news-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.news-image {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-title {
    margin-bottom: 0.75rem;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-title a:hover {
    color: #27ae60;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    font-size: 0.875rem;
    color: #888;
}

.news-meta .author {
    font-weight: 600;
    color: #2c3e50;
}

.news-meta .date {
    margin-left: 1rem;
}
/* News Single Page */
.news-single {
    padding: 60px 0;
}

.article-header {
    margin-bottom: 30px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 20px;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.article-tags {
    margin-bottom: 30px;
}

.tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0 5px 5px 0;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* Related Articles */
.related-articles {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e9ecef;
}

.related-articles h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    margin: 0 0 10px 0;
}

.related-content h4 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-content h4 a:hover {
    color: #27ae60;
}

.related-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.related-meta {
    color: #6c757d;
    font-size: 0.8rem;
}

/* News Listing Page */
.news-listing {
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #6c757d;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
}

.news-title a:hover {
    color: #27ae60;
}

.news-excerpt {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.news-author {
    color: #6c757d;
}

.read-more {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Type badges */
.type-blog { background: #3498db; color: white; padding: 3px 8px; border-radius: 3px; font-size: 0.7rem; }
.type-news { background: #2ecc71; color: white; padding: 3px 8px; border-radius: 3px; font-size: 0.7rem; }
.type-report { background: #9b59b6; color: white; padding: 3px 8px; border-radius: 3px; font-size: 0.7rem; }
.type-campaign { background: #27ae60; color: white; padding: 3px 8px; border-radius: 3px; font-size: 0.7rem; }

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* No news state */
.no-news {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-news i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #bdc3c7;
}

.no-news h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Breadcrumb */
.breadcrumb {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
}

.page-header p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
/* Documents Section Styles */
.documents-section {
    margin-bottom: 4rem;
}

.documents-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.document-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e67e22;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.document-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.document-content {
    flex: 1;
}

.document-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.document-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.document-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.file-size {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    color: #666;
    border: 1px solid #e9ecef;
}

.file-date {
    color: #999;
    font-style: italic;
}

.document-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-icon {
    margin-right: 0.5rem;
}

/* Make sure all download buttons are consistent */
.btn[download] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Documents */
@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
    }
    
    .document-meta {
        justify-content: center;
    }
    
    .document-actions {
        justify-content: center;
    }
    
    .document-actions .btn {
        flex: 1;
        min-width: 140px;
    }
}
/* Reports Page Styles */
.reports-section {
    margin-bottom: 4rem;
}

.reports-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.report-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.report-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.report-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Financial Reports Section */
.financial-reports-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.financial-reports-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #27ae60;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.financial-reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.financial-report-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.report-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.report-header h3 {
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.report-year {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.report-details {
    margin-bottom: 1.5rem;
}

.report-details p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.report-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-downloads .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .financial-reports-section {
        padding: 2rem 1rem;
    }
    
    .financial-reports-grid {
        grid-template-columns: 1fr;
    }
    
    .report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .report-downloads {
        flex-direction: column;
    }
    
    .report-downloads .btn {
        text-align: center;
    }
}
/* Featured Links Section */
.featured-links {
    padding: 50px 0 30px;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.featured-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.quick-links-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    margin-bottom: 12px;
}

.quick-links-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.quick-links-list a:hover {
    color: #27ae60;
    border-bottom-color: #27ae60;
    padding-left: 10px;
}

.featured-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-post {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f2f3;
}

.featured-post:last-child {
    border-bottom: none;
}

.post-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.blog-badge {
    background: #3498db;
    color: white;
}

.campaign-badge {
    background: #27ae60;
    color: white;
}

.report-badge {
    background: #9b59b6;
    color: white;
}

.news-badge {
    background: #95a5a6;
    color: white;
}

.post-title {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    flex: 1;
}

.post-title:hover {
    color: #27ae60;
    text-decoration: underline;
}

/* What We're Saying Section */
.what-we-saying {
    padding: 60px 0;
    background: white;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.what-we-saying .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.what-we-saying .section-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.news-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 40px;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-title {
    margin: 0 0 20px 0;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #27ae60;
    text-decoration: underline;
}

.news-excerpt {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

.news-meta .author {
    font-weight: 600;
    color: #2c3e50;
}

.news-meta .date {
    margin-left: 10px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-link {
    display: block;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
}

.sidebar-link:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Campaign Grid */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.campaign-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.campaign-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.campaign-card p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fixed Join Button */
.fixed-join-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.join-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #27ae60;
}

.join-btn:hover {
    background: white;
    color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .featured-layout,
    .news-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-links-section {
        text-align: center;
    }
    
    .quick-links-list {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .quick-links-list li {
        margin-bottom: 0;
    }
    
    .sidebar-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .sidebar-link {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .featured-links {
        padding: 40px 0 20px;
    }
    
    .quick-links-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .featured-post {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .what-we-saying .section-header h2 {
        font-size: 1.7rem;
    }
    
    .news-title a {
        font-size: 1.3rem;
    }
    
    .sidebar-links {
        flex-direction: column;
    }
    
    .fixed-join-button {
        right: 20px;
        bottom: 20px;
    }
    
    .btn-text {
        display: none;
    }
    
    .join-btn {
        padding: 15px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .btn-icon {
        font-size: 1.5rem;
        margin: 0;
    }
}
/* Main Footer Styling */
.main-footer {
    background: #2c3e50;
    color: white;
    margin-top: 50px;
}

.footer-content {
    padding: 50px 0 30px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #3498db;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid #34495e;
    padding-bottom: 10px;
}

/* Contact Information */
.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.address {
    font-style: normal;
    color: #bdc3c7;
}

.phone strong, .email strong {
    color: #3498db;
    margin-right: 5px;
}

.contact-link {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: 600;
}

.contact-link:hover {
    background: #c0392b;
}

/* Regional and Quick Links */
.regional-list, .quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regional-list li, .quick-links li {
    margin-bottom: 8px;
}

.regional-list a, .quick-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.regional-list a:hover, .quick-links a:hover {
    color: #3498db;
}

/* Social Media */
.social-media p {
    color: #bdc3c7;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter p {
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 3px;
    background: #34495e;
    color: white;
    border: 1px solid #4a6278;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3498db;
}

.newsletter-form button {
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #c0392b;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright p {
    color: #95a5a6;
    margin: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-links .cookie-preferences {
    color: #3498db;
    font-weight: 600;
}

.cookie-notice {
    background: #34495e;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.cookie-notice p {
    color: #bdc3c7;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.cookie-notice a {
    color: #3498db;
    text-decoration: none;
}

.cookie-notice a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.page-header p {
    margin: 10px 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.campaigns-grid,
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards */
.benefit-card,
.campaign-card,
.research-card,
.location-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover,
.campaign-card:hover,
.research-card:hover,
.location-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
}

/* Forms */
.registration-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-outline {
    border: 2px solid #3498db;
    color: #3498db;
    background: transparent;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Progress Bars */
.progress-bar {
    background: #ecf0f1;
    border-radius: 10px;
    height: 20px;
    margin: 15px 0;
    position: relative;
}

.progress {
    background: #27ae60;
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c3e50;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .campaigns-grid,
    .research-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        flex-direction: column;
    }
}


/* Top Bar Styling */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 5px;
    color: #3498db;
}

.top-bar-right a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.top-bar-right a.member-login {
    background: #27ae60;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: bold;
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    margin: 0;
    color: #2c3e50;
    font-size: 28px;
}

.logo-text p {
    margin: 0;
    color: #7f8c8d;
    font-size: 12px;
}

/* Main Navigation */
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.menu-item {
    margin: 0 15px;
    position: relative;
}

.menu-item a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #27ae60;
}

.search-item a {
    font-size: 18px;
    color: #3498db;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.search-container {
    width: 80%;
    max-width: 600px;
    position: relative;
}

.search-container form {
    display: flex;
    align-items: center;
}

.search-container input {
    flex: 1;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.search-container button {
    background: #3498db;
    color: white;
    border: none;
    padding: 20px 25px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.close-search {
    color: white;
    font-size: 24px;
    margin-left: 20px;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-item {
        margin: 5px 10px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}