:root {
    --primary-color: #839D63;
    /* Updated color */
    --secondary-color: #2C3E50;
    /* Dark Blue */
    --accent-color: #F4D03F;
    /* Yellow */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 4px solid #3456A3;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FFDD00;
    color: #0E2B5E;
    font-weight: 800;
}

.btn-primary:hover {
    background-color: #eebb00;
    color: #0E2B5E;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/hero-bg-new.jpg');
    /* Placeholder image */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Intro Text */
.intro-text {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    margin-top: 2rem;
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.partners-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    color: var(--white);
    text-align: center;
}

.quote-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: #ccc;
}

.social-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    flex: 1;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switch {
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}



.stories-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story-card {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.story-card h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.meta {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.read-more {
    color: #3456A3;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.quote-section h2 {
    color: var(--white);
    margin-bottom: 3rem;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 4rem 0 2rem;
}

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 0.5rem;
}

.social-links a {
    color: #ccc;
}

.social-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
    flex: 1;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switch {
    border: 1px solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background-color: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.mv-card.mission::before {
    background-color: var(--primary-color);
}

.mv-card.vision::before {
    background-color: var(--accent-color);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-image-placeholder {
    background-color: #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #777;
    font-weight: 600;
    background-image: linear-gradient(45deg, #f3f3f3 25%, #e6e6e6 25%, #e6e6e6 50%, #f3f3f3 50%, #f3f3f3 75%, #e6e6e6 75%, #e6e6e6 100%);
    background-size: 20px 20px;
}

.mv-image-real {
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-image-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    background-color: #333;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background-color: var(--primary-color);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

/* Pillars Section */
.pillars-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pillar-image-placeholder {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: linear-gradient(to bottom right, #e0e0e0, #f5f5f5);
}

.pillar-content {
    padding: 2rem;
}

.pillar-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(131, 157, 99, 0.1);
    /* Primary color with opacity */
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive adjustments for new page */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .video-placeholder {
        height: 300px;
    }
}

/* Stories Section */
.stories-section {
    padding: 6rem 0;
    background-color: #0E2B5E;
}

.stories-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: #4ca6f2;
    color: var(--secondary-color);
    padding: 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-card-content {
    padding: 2rem;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #3456A3;
}


.story-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.story-category {
    background-color: rgba(44, 62, 80, 0.15);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.story-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.story-image img {
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pillar-image-placeholder {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background: linear-gradient(to bottom right, #e0e0e0, #f5f5f5);
}

.pillar-content {
    padding: 2rem;
}

.pillar-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(131, 157, 99, 0.1);
    /* Primary color with opacity */
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive adjustments for new page */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .video-placeholder {
        height: 300px;
    }
}

/* Stories Section */
.stories-section {
    padding: 6rem 0;
    background-color: #0E2B5E;
}

.stories-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: #4ca6f2;
    color: var(--secondary-color);
    padding: 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-card-content {
    padding: 2rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.story-category {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.story-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

/* What We Do Page Styles */
.visual-style-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/what-we-do-hero-updated.jpg');
    /* Parallax effect */
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 10rem 0;
    text-align: center;
}

.visual-style-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.visual-style-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.pillars-detailed-section {
    padding: 4rem 0;
    background-color: #f4f7f6;
}

.pillar-block {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pillar-header {
    background-color: #7C9BC0;
    /* Dark Green */
    color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dashed circle decoration mimicking the reference image */
.pillar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    border: 4px dashed #839D63;
    /* Lighter green accent */
    border-radius: 50%;
    opacity: 0.3;
    animation: spin 60s linear infinite;
}

.pillar-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border: 6px dashed #F4D03F;
    /* Yellow accent */
    border-radius: 50%;
    opacity: 0.2;
    animation: spin 80s linear infinite reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pillar-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.pillar-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

.program-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #839D63;
}

.program-icon {
    width: 50px;
    height: 50px;
    background-color: #7C9BC0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.program-card h3 {
    color: #2C3E50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .visual-style-hero h1 {
        font-size: 2.5rem;
    }

    .visual-style-hero .subtitle {
        font-size: 1.2rem;
    }

    .pillars-grid,
    .programs-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .pillar-card,
    .story-card {
        padding: 1rem;
    }

    .program-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .visual-style-hero h1 {
        font-size: 2rem;
    }

    .visual-style-hero .subtitle {
        font-size: 1rem;
    }

    /* What We Do Page Styles */
    .visual-style-hero {
        background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('../img/what-we-do-hero-updated.jpg');
        /* Original hero style */
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        color: #ffffff;
        padding: 8rem 0;
        text-align: center;
    }

    .visual-style-hero h1 {
        color: #ffffff;
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .visual-style-hero .subtitle {
        font-size: 1.5rem;
        opacity: 0.9;
    }

    .pillars-detailed-section {
        padding: 4rem 0;
        background-color: #f4f7f6;
    }

    .pillar-block {
        margin-bottom: 4rem;
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .pillar-header {
        background-color: #7C9BC0;
        /* Dark Green */
        color: #ffffff;
        padding: 3rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Dashed circle decoration mimicking the reference image */
    .pillar-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 300px;
        height: 300px;
        border: 4px dashed #839D63;
        /* Lighter green accent */
        border-radius: 50%;
        opacity: 0.3;
        animation: spin 60s linear infinite;
    }

    .pillar-header::after {
        content: '';
        position: absolute;
        bottom: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        border: 6px dashed #F4D03F;
        /* Yellow accent */
        border-radius: 50%;
        opacity: 0.2;
        animation: spin 80s linear infinite reverse;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .pillar-header h2 {
        color: #ffffff;
        font-size: 2.5rem;
        position: relative;
        z-index: 1;
    }

    .pillar-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .programs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 3rem;
    }

    .program-card {
        background-color: #ffffff;
        padding: 2rem;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: #839D63;
    }

    .program-icon {
        width: 50px;
        height: 50px;
        background-color: #7C9BC0;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-family: var(--font-heading);
    }

    .program-card h3 {
        color: #2C3E50;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .program-card p {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .container {
            padding: 0 1rem;
        }

        .visual-style-hero h1 {
            font-size: 2.5rem;
        }

        .visual-style-hero .subtitle {
            font-size: 1.2rem;
        }

        .pillars-grid,
        .programs-grid,
        .stories-grid {
            grid-template-columns: 1fr;
        }

        .program-card,
        .pillar-card,
        .story-card {
            padding: 1rem;
        }

        .program-icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .hero {
            padding: 4rem 0;
        }
    }

    @media (max-width: 480px) {
        .visual-style-hero h1 {
            font-size: 2rem;
        }

        .visual-style-hero .subtitle {
            font-size: 1rem;
        }

        .program-card h3 {
            font-size: 1.1rem;
        }

        .program-card p {
            font-size: 0.9rem;
        }

        /* RESPONSIVE HEADER - Mobile Menu */
        .mobile-menu-toggle {
            display: block;
        }

        .site-header .container {
            flex-wrap: wrap;
            padding: 0 1rem;
        }

        .logo img {
            max-width: 120px;
            height: auto;
        }

        .main-nav {
            display: none;
            width: 100%;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 999;
        }

        .main-nav.active {
            display: block;
        }

        .main-nav ul {
            flex-direction: column;
            gap: 0;
            padding: 1rem;
        }

        .main-nav li {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        .main-nav a {
            display: block;
            padding: 1rem;
            width: 100%;
        }

        .main-nav .btn {
            margin: 0.5rem 0;
            text-align: center;
        }

        /* RESPONSIVE VIDEO */
        .video-section {
            padding: 2rem 0;
        }

        .video-wrapper {
            width: 100%;
            max-width: 100%;
            margin: 0;
        }

        .video-wrapper video {
            width: 100%;
            height: auto;
            max-width: 100%;
        }

        .video-placeholder {
            height: 250px;
        }

        /* Additional responsive adjustments */
        .page-hero {
            padding: 3rem 0;
        }

        .pillar-header h2 {
            color: #ffffff;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .pillar-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 3rem;
        }

        .program-card {
            background-color: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #839D63;
        }

        .program-icon {
            width: 50px;
            height: 50px;
            background-color: #7C9BC0;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-family: var(--font-heading);
        }

        .program-card h3 {
            color: #2C3E50;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .program-card p {
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .visual-style-hero h1 {
                font-size: 2.5rem;
            }

            .visual-style-hero .subtitle {
                font-size: 1.2rem;
            }

            .pillars-grid,
            .programs-grid,
            .stories-grid {
                grid-template-columns: 1fr;
            }

            .program-card,
            .pillar-card,
            .story-card {
                padding: 1rem;
            }

            .program-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .hero {
                padding: 4rem 0;
            }
        }

        @media (max-width: 480px) {
            .visual-style-hero h1 {
                font-size: 2rem;
            }

            .visual-style-hero .subtitle {
                font-size: 1rem;
            }

            .program-card h3 {
                font-size: 1.1rem;
            }

            .program-card p {
                font-size: 0.9rem;
            }

            /* RESPONSIVE HEADER - Mobile Menu */
            .mobile-menu-toggle {
                display: block;
            }

            .site-header .container {
                flex-wrap: wrap;
                padding: 0 1rem;
            }

            .logo img {
                max-width: 120px;
                height: auto;
            }

            .main-nav {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: var(--white);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                z-index: 999;
            }

            .main-nav.active {
                display: block;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 0;
                padding: 1rem;
            }

            .main-nav li {
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .main-nav a {
                display: block;
                padding: 1rem;
                width: 100%;
            }

            .main-nav .btn {
                margin: 0.5rem 0;
                text-align: center;
            }

            /* RESPONSIVE VIDEO */
            .video-section {
                padding: 2rem 0;
            }

            .video-wrapper {
                width: 100%;
                max-width: 100%;
                margin: 0;
            }

            .video-wrapper video {
                width: 100%;
                height: auto;
                max-width: 100%;
            }

            .video-placeholder {
                height: 250px;
            }

            /* Additional responsive adjustments */
            .page-hero {
                padding: 3rem 0;
            }

            .page-hero h1 {
                font-size: 2rem;
            }

            .pillar-header {
                padding: 2rem 1rem;
            }

            .pillar-header h2 {
                font-size: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
    }
}

/* Floating Donate Button */
.floating-donate-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #FFDD00;
    /* Primary/Accent color border */
}

.floating-donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-donate-btn form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.floating-donate-btn input[type="image"] {
    display: block;
    max-height: 40px;
    /* Consistent height */
    width: auto;
}

/* Hide on very small screens if it covers content, or adjust */
@media (max-width: 480px) {
    .floating-donate-btn {
        bottom: 10px;
        left: 10px;
        padding: 8px 12px;
    }
}