﻿:root {
    --primary: #2a6e36;
    --secondary: #f39c12;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 100px;
        margin-right: 10px;
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

    nav ul li {
        margin-left: 25px;
    }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

            nav ul li a:hover, nav ul li a.active {
                color: var(--primary);
            }

.language-toggle {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

    .language-toggle:hover {
        background: #1f5129;
    }

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1200x400/2a6e36/white?text=Our+Programs') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

    .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

/* Breadcrumb */
.breadcrumb {
    background: var(--light);
    padding: 15px 0;
    margin-bottom: 40px;
}

.breadcrumb-content {
    display: flex;
    list-style: none;
}

    .breadcrumb-content li {
        margin-right: 10px;
        font-size: 0.9rem;
    }

        .breadcrumb-content li:after {
            content: "/";
            margin-left: 10px;
            color: #999;
        }

        .breadcrumb-content li:last-child:after {
            content: "";
        }

    .breadcrumb-content a {
        color: var(--primary);
        text-decoration: none;
    }

        .breadcrumb-content a:hover {
            text-decoration: underline;
        }

/* Programs Intro */
.programs-intro {
    text-align: center;
    margin-bottom: 50px;
}

    .programs-intro p {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

/* Pillars Section */
.pillars {
    margin: 60px 0;
}

.pillar {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.pillar-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--primary);
    background-position: center;
    background-size: cover;
}

.pillar-content {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

.pillar-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: bold;
}

.pillar-content h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.programs-list {
    margin: 20px 0;
}

.program-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

    .program-item:before {
        content: "•";
        color: var(--secondary);
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
    }

/* Impact Section */
.impact {
    background: var(--light);
    padding: 70px 0;
    margin: 60px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.impact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .impact-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .impact-card h3 {
        color: var(--primary);
        margin-bottom: 15px;
    }

/* Approach Section */
.approach {
    margin: 60px 0;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

    .approach-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--dark);
        max-width: 700px;
        margin: 0 auto;
    }

/* Call to Action */
.cta {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin: 60px 0 0;
}

    .cta h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0 10px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

    .btn-primary:hover {
        background: #e67e22;
        transform: translateY(-3px);
    }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
    }

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

    .footer-column h3 {
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .footer-column p, .footer-column a {
        margin-bottom: 10px;
        color: #ccc;
        text-decoration: none;
        display: block;
    }

        .footer-column a:hover {
            color: var(--white);
        }

.social-icons {
    display: flex;
    margin-top: 15px;
}

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #444;
        border-radius: 50%;
        margin-right: 10px;
        transition: background 0.3s;
    }

        .social-icons a:hover {
            background: var(--primary);
        }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .pillar {
        flex-direction: column;
    }

    .pillar-image {
        min-height: 200px;
    }

    .approach-content {
        flex-direction: column;
    }
}