:root {
    --green-dark: #16213e;
    --green-mid: #16213e;
    --amber: #EB6753;
    --amber-light: #EB6753;
    --cream: #f8f4ee;
    --text-dark: #1a1a1a;
    --text-muted: #7a7a6e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'DM Sans', sans-serif;
    background: white;
    color: var(--text-dark);
    line-height: 1.6;
}
/* ── HERO SECTION ── */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(162, 206, 168, 0.7), rgba(23, 33, 62, 1)),
                url('/Pictures/Rwanda_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, white, transparent);
}
.hero-content {
    max-width: 800px;
    padding: 0 5%;
    z-index: 2;
}
.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.4s both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ── STORY SECTION ── */
.story-section {
    padding: 100px 6%;
    background: white;
}
.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-image {
    position: relative;
}
.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 47, 30, 0.15);
}
.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--amber);
    border-radius: 20px;
    z-index: -1;
}
.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    margin-bottom: 20px;
    font-weight: 700;
}
.story-content .highlight {
    color: var(--amber);
    font-style: italic;
}
.story-content p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}
/* ── MISSION/VISION SECTION ── */
.mission-vision-section {
    padding: 80px 6%;
    background: var(--cream);
}
.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.mission-card,
.vision-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 47, 30, 0.08);
    position: relative;
    overflow: hidden;
}
.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--amber);
}
.mission-card h3,
.vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--green-dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}
.mission-card h3 i,
.vision-card h3 i {
    font-size: 2rem;
    color: var(--amber);
}
.mission-card p,
.vision-card p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.8;
}
/* ── VALUES SECTION ── */
.values-section {
    padding: 100px 6%;
    background: white;
}
.values-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-title p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}
.value-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 2px solid transparent;
}
.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--amber);
    box-shadow: 0 15px 40px rgba(196, 127, 42, 0.15);
}
.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-light);
    font-size: 1.8rem;
}
.value-card h4 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    font-weight: 600;
}
.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
/* ── STATS SECTION ── */
.stats-section {
    padding: 80px 6%;
    background: var(--green-dark);
    color: white;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--amber-light);
    margin-bottom: 10px;
    font-weight: 700;
}
.stat-item p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
}
/* ── TEAM SECTION ── */
.team-section {
    padding: 100px 6%;
    background: white;
}
.team-container {
    max-width: 1200px;
    margin: 0 auto;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.team-card {
    text-align: center;
    transition: 0.4s;
}
.team-card:hover {
    transform: translateY(-10px);
}
.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--amber-light);
    position: relative;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.team-card:hover .team-image img {
    transform: scale(1.1);
}
.team-card h4 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.team-card .role {
    font-size: 0.95rem;
    color: var(--amber);
    margin-bottom: 15px;
}
.team-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
/* ── CTA SECTION ── */
.cta-section {
    padding: 80px 6%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    text-align: center;
    color: white;
}
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}
.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}
.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--green-dark);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}
.cta-btn:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .story-container,
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-image::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
    }
    .story-section,
    .values-section,
    .team-section {
        padding: 70px 5%;
    }
    .mission-vision-section,
    .stats-section,
    .cta-section {
        padding: 60px 5%;
    }
    .story-image img {
        height: 350px;
    }
    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }
    .stats-container {
        gap: 35px;
    }
}
@media (max-width: 480px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FOOTER ── */
.main-footer {
    background: var(--green-dark);
    color: white;
    padding-top: 10px;
    position: relative;
    margin-top: 0px;
}

/* CTA Banner (overlaps footer) */
.footer-cta {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    padding: 50px 6%;
    border-radius: 25px;
    margin: 0 6%;
    transform: translateY(-80px);
    box-shadow: 0 25px 50px rgba(196, 127, 42, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    background: white;
    color: var(--green-dark);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.cta-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cta-phone span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
.cta-phone strong {
    font-size: 1.3rem;
    color: white;
    font-family: 'Playfair Display', serif;
}
/* Footer Main Content */
.footer-content {
    max-width: 1300px;
    margin: -50px auto 0;
    padding: 0 6%;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/* Brand Column */
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    max-width: 280px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}
.social-links a:hover {
    background: var(--amber);
    transform: translateY(-3px);
}
/* Link Columns */
.footer-column{
    display: flex;
    flex-direction: column;
}
.footer-column h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
}
.footer-column ul li a:hover {
    color: var(--amber-light);
    transform: translateX(5px);
}
/* Newsletter */
.newsletter-form {
    margin-top: 20px;
}
.newsletter-input {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.newsletter-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}
.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-input button {
    padding: 12px 24px;
    background: var(--amber);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-input button:hover {
    background: var(--amber-light);
}
/* Footer Bottom */
.footer-bottom {
    padding: 30px 6%;
    text-align: center;
}
.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--amber-light);
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .main-footer {
        margin-top: 10px;
    }
    .footer-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 6%;
        transform: translateY(-50px);
    }
    .cta-content p {
        max-width: 100%;
    }
    .cta-actions {
        justify-content: center;
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-column {
        flex-direction: column;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-input {
        flex-direction: column;
    }
    .newsletter-input button {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .footer-cta {
        padding: 30px 5%;
    }
    .footer-column {
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}