* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(26, 129, 195, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-left {
    flex: 1;
}

.nav-logo {
    flex: 1;
    text-align: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.hamburger-btn:hover {
    color: #fdcb2c;
}

.hamburger-icon {
    font-size: 1.2rem;
}

.donation-btn {
    background: #fdcb2c;
    color: #1a81c3;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.donation-btn:hover {
    background: #e53236;
    color: white;
    transform: translateY(-2px);
}

.search-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #fdcb2c;
}

/* Donate button */
.donate_btn{
    text-decoration: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    transition: color 0.3s;
}

.dropdown-toggle:hover {
    color: #fdcb2c;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(26, 129, 195, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

/* Remove old nav-menu styles */
.nav-menu {
    display: none;
}

/* Main Section */
.main-section {
    margin-top: 80px;
    min-height: 70vh;
    background: linear-gradient(135deg, #a4ca3f 0%, #1a81c3 50%, #a23791 100%);
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(rgba(26, 129, 195, 0.1), rgba(162, 55, 145, 0.1));
}

.social-media {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(26, 129, 195, 0.8);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-media a:hover {
    background: #1a81c3;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-blend-mode: overlay;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 129, 195, 0.3), rgba(162, 55, 145, 0.3));
}

.slide h2, .slide p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.slide:nth-child(1) {
    background-image: url('assets/pladoyer.jpg');
}

.slide:nth-child(2) {
    background-image: url('assets/enas.jpg');
}

.slide:nth-child(3) {
    background-image: url('assets/FB_IMG_1752045124853.jpg');
}

.slide:nth-child(4) {
    background-image: url('assets/idia.jpg');
}

.slide.active {
    opacity: 1;
}

.slide h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide p {
    font-size: 1.2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 129, 195, 0.8);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: #1a81c3;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slide-btn {
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s;
    position: relative;
    z-index: 3;
    text-shadow: none;
    text-decoration: none;
    display: inline-block;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Article page styles */
.article-container {
    max-width: 800px;
    margin: 120px auto 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    color: #1a81c3;
    margin-bottom: 1rem;
    text-align: center;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.back-btn {
    background: #1a81c3;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: background 0.3s;
}

.back-btn:hover {
    background: #145a8a;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fdcb2c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #fdcb2c;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #fdcb2c;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #fdcb2c;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
    color: #fdcb2c;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

.three-columns {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 2rem;
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    padding: 4rem 2rem;
    margin: 0;
    max-width: none;
}

.column {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(26, 129, 195, 0.2);
    transition: all 0.3s;
}

.column:hover {
    transform: translateY(-10px);
    border-color: #1a81c3;
    box-shadow: 0 10px 30px rgba(26, 129, 195, 0.3);
}

.column img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a81c3;
    font-weight: bold;
}

.column p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.voir-plus-btn {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s;
}

.voir-plus-btn:hover {
    background: linear-gradient(135deg, #a4ca3f 0%, #e53236 100%);
    transform: translateY(-2px);
}

.portfolio-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
}

.portfolio-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.portfolio-container {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-container:hover {
    /* Remove animation-play-state */
}

.portfolio-card {
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.portfolio-card:hover {
    transform: scale(1.1);
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.card-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    width: 100%;
    padding: 2rem;
}

.project-title {
    color: #fdcb2c;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

/* Scrollbar styling */
.portfolio-container::-webkit-scrollbar {
    height: 8px;
    width: 10px;
}

.portfolio-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
}

.portfolio-container::-webkit-scrollbar-thumb {
    background: #a23791;
    border-radius: 25px;
}

.portfolio-container::-webkit-scrollbar-thumb:hover {
    background: #8a2d7a;
}

/* Remove the keyframes animation */









.intervention-section {
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.intervention-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

.intervention-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.intervention-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: white;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.intervention-main {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intervention-text {
    flex: 1;
    color: white;
}

.sfi-stats {
    margin-bottom: 3rem;
}

.sfi-stats h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fdcb2c;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fdcb2c;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: white;
    font-weight: 500;
    line-height: 1.3;
}

.countries-description {
    margin-top: 2rem;
}

.countries-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fdcb2c;
    font-weight: 600;
}

.countries-description p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.country-tag {
    background: rgba(229, 50, 54, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(229, 50, 54, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    font-weight: 500;
}

.country-tag:hover {
    background: rgba(229, 50, 54, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 50, 54, 0.3);
}

.intervention-map {
    flex: 1.2;
}

.intervention-map img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .intervention-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .intervention-title {
        font-size: 2.2rem;
    }
}

.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #a23791 0%, #fdcb2c 100%);
    overflow: hidden;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: partnersScroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid rgba(26, 129, 195, 0.1);
    padding: 1rem;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 6 - 18rem));
    }
}

/* Additional styles for ENAS page */
.crisis-overview {
    background: linear-gradient(135deg, rgba(26, 129, 195, 0.1), rgba(162, 55, 145, 0.1));
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #1a81c3;
}

.impact-section {
    background: linear-gradient(135deg, rgba(253, 203, 44, 0.1), rgba(229, 50, 54, 0.1));
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #fdcb2c;
}

.statistics-box {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #e53236;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.children-focus {
    background: linear-gradient(135deg, rgba(164, 202, 63, 0.1), rgba(26, 129, 195, 0.1));
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #a4ca3f;
}

.project-description {
    background: linear-gradient(135deg, rgba(162, 55, 145, 0.1), rgba(253, 203, 44, 0.1));
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #a23791;
}

.project-phases {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.phase {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
    border-top: 3px solid #1a81c3;
}

.phase h4 {
    color: #1a81c3;
    margin-bottom: 0.5rem;
}

.phase p {
    color: #666;
    font-size: 0.9rem;
}

/* Timeline styles */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1a81c3;
}

/* Key facts styles */
.key-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 8px;
    border-left: 4px solid #1a81c3;
}

.fact-icon {
    font-size: 2rem;
    color: #1a81c3;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    color: white;
    border-radius: 8px;
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
}

/* Strategic pillars */
.strategic-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pillar {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #1a81c3;
}

.pillar-icon {
    font-size: 3rem;
    color: #1a81c3;
    margin-bottom: 1rem;
}

.pillar ul {
    text-align: left;
    margin-top: 1rem;
}

/* Inspiration styles */
.inspiration-sources {
    margin: 3rem 0;
}

.inspiration-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 8px;
}

.inspiration-icon {
    font-size: 2.5rem;
    color: #a23791;
    margin-top: 0.5rem;
}

.quote-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
    border-radius: 8px;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-section cite {
    font-size: 1rem;
    opacity: 0.8;
}

.call-to-action {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    color: white;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Vision Mission cards */
.vision-mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vision-card, .mission-card {
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.vision-card {
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    color: white;
}

.mission-card {
    background: linear-gradient(135deg, #a4ca3f 0%, #1a81c3 100%);
    color: white;
}

/* Domain grid */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.domain-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1a81c3;
    text-align: center;
}

.domain-icon {
    font-size: 3rem;
    color: #1a81c3;
    margin-bottom: 1rem;
}

/* Impact areas */
.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.impact-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border-radius: 8px;
    border-left: 4px solid #a23791;
}

/* Program sections */
.program-section {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.program-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.program-icon {
    font-size: 3rem;
    color: #1a81c3;
}

/* Leaders grid */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.leader-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a81c3 0%, #a23791 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
}

/* AFORA and Plaidoyer styles */
.afora-objectives ul, .plaidoyer-axes ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.axes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.axe-item {
    padding: 1rem;
    background: linear-gradient(135deg, #fdcb2c 0%, #e53236 100%);
    color: white;
    border-radius: 8px;
}

.axe-item h5 {
    margin-bottom: 0.5rem;
    font-weight: bold;
}




