/* --- Variables for Easy Changes --- */
:root {
    /* --- 1. The Background (FIXED) --- */
    /* Pearl White: Soft, expensive-looking, not yellow/bright */
    --bg-color: #F9F8F6; 
    
    /* --- 2. Primary Action (Trust) --- */
    /* Deep Emerald Green */
    --primary-brown: #047857; 
    
    /* --- 3. Footer (Stability) --- */
    /* Darker Forest Green */
    --secondary-brown: #022C22; 
    
    /* --- 4. The Gold (Accents Only) --- */
    /* Metallic Gold - Used for borders and highlights */
    --accent-gold: #C5A059; 

    /* Standard Text */
    --text-dark: #1C1917;
    --text-grey: #57534E;
    --border-light: #E5E5E5;
    
    /* Fonts */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --spacing-section: 140px;
    --spacing-hero: 180px;
    --spacing-card: 40px;
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

button { cursor: pointer; } /* Global pointer cursor for all buttons */

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; } /* Increased max-width slightly */
.text-center { text-align: center; }
a { text-decoration: none; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-serif); color: var(--text-dark); font-weight: 700; } /* Switched to Playfair Display for premium feel */

.accent-text { color: var(--primary-brown); }

.section-title { font-size: 2rem; margin-bottom: 15px; font-weight: 700; letter-spacing: -0.5px; }
.section-sub { color: var(--text-grey); margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 0.95rem; line-height: 1.6; }

/* --- Buttons --- */
/* --- Buttons --- */
/* --- Buttons --- */
.btn {
    padding: 16px 36px;
    border-radius: 50px; /* Pill shape for modern look */
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer; /* Ensure pointer cursor on hover */
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-brown {
    background: linear-gradient(135deg, var(--primary-brown) 0%, #065f46 100%); /* Gradient using primary green */
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-brown:hover { 
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4), 0 3px 6px rgba(0,0,0,0.1);
}
.btn-brown:active { transform: translateY(0); }

.btn-outline {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.btn-outline:hover { 
    border-color: var(--primary-brown); 
    color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Hero Section --- */
.hero-section { 
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px); /* Reduced blur slightly for more definition */
    opacity: 0.6; /* Increased opacity */
    z-index: 0;
    animation: floatShape 20s infinite alternate ease-in-out;
    will-change: transform, border-radius;
}

.hero-section::before {
    background: rgba(4, 120, 87, 0.2); /* Primary Green - slightly darker */
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.hero-section::after {
    background: rgba(197, 160, 89, 0.25); /* Accent Gold - slightly darker */
    bottom: -15%;
    right: -5%;
    animation-delay: -5s;
    width: 900px;
    height: 900px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { transform: translate(50px, 50px) rotate(20deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1; /* Ensure content is above shapes */
}

.hero-content {
    text-align: left;
}

.hero-logo-title {
    height: auto; /* Matches the visual weight of the previous 4.5rem title */
    width: 410px;
    margin-bottom: 25px;
    display: block;
    margin-top: 20px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for carousel */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.tag-top {
    background: #F5F0EB;
    color: var(--primary-brown);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
}

.main-title { font-size: 4rem; margin: 0 0 25px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }
.hero-sub { font-size: 1.25rem; color: var(--text-grey); margin-bottom: 40px; font-weight: 400; max-width: 90%; margin-left: 0; }

.hero-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    align-items: flex-start; /* Left align buttons */
    width: 100%;
    max-width: 300px;
    margin: 0; /* Remove auto margin */
}
.hero-buttons .btn { width: 100%; justify-content: center; }

/* --- Impact Model (3 Col Grid) --- */
#model {
    background-color: white;
    padding-top: 160px; /* Starts a bit later */
    padding-bottom: 100px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.icon-card { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 16px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.04); 
    text-align: center;
    transition: transform 0.3s ease;
}
.icon-card:hover { transform: translateY(-5px); }

.icon-circle {
    width: 60px; height: 60px; 
    background: #ECFDF5; /* CHANGED: Very light mint green */
    color: var(--primary-brown);
    border-radius: 16px; 
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; 
    font-size: 1.4rem;
}

.icon-card h3 { font-size: 1.2rem; margin-bottom: 15px; font-weight: 700; }
.icon-card p { font-size: 0.95rem; color: var(--text-grey); line-height: 1.7; }

/* --- Featured Charities (2 Col Grid) --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}
.charity-card {
    background: white; 
    border: 1px solid #f0f0f0; 
    padding: 40px; 
    border-radius: 12px; 
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.charity-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-color: #e0e0e0; }

.tiny-label {
    font-size: 0.65rem; text-transform: uppercase; color: var(--primary-brown); font-weight: 800; margin-bottom: 12px; display: block; letter-spacing: 1px;
}
.charity-card h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; letter-spacing: -0.5px; }
.charity-card p { font-size: 0.95rem; color: var(--text-grey); margin-bottom: 25px; line-height: 1.6; }
.impact-focus {
    background: #F9F9F9; padding: 20px; border-radius: 8px; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 25px; border: 1px solid #eee;
}
.btn-text { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: var(--primary-brown); 
    border: 1px solid #e5e7eb; 
    padding: 12px 24px; 
    border-radius: 50px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    transition: all 0.3s ease;
    background: white;
}
.btn-text:hover { 
    border-color: var(--primary-brown); 
    background: #f0fdf4; 
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.btn-text i { transition: transform 0.3s ease; }
.btn-text:hover i { transform: translateX(3px); }

/* --- Donation Section --- */
.section-padding { padding: 120px 0; }
.section-extra-spacing { padding: 160px 0; }
.section-reduced-top { padding: 80px 0 120px; }
.bg-light { background-color: #fff; } /* Changed to white as per image, or very subtle off-white if needed, but image looks clean */

.heart-icon {
    width: 48px; height: 48px; border-radius: 50%; 
    background: #ECFDF5; /* CHANGED: Very light mint green */
    color: var(--primary-brown);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.2rem;
}

.donation-box {
    background: white; max-width: 550px; margin: 0 auto; padding: 40px;
    border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid #f0f0f0;
}
.donation-box h4 { font-family: var(--font-sans); font-size: 1.3rem; margin-bottom: 8px; font-weight: 700; }

/* Donation Form Styles */
.donation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.frequency-toggle {
    background: #f3f4f6;
    padding: 5px;
    border-radius: 50px;
    display: flex;
    position: relative;
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-grey);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.toggle-btn.active {
    background: white;
    color: var(--primary-brown);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.amount-input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

#customAmount {
    width: 100%;
    padding: 16px 20px 16px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s ease;
    background: white;
}

#customAmount:focus {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}
.small-text { font-size: 0.9rem; color: var(--text-grey); margin-bottom: 30px; }

.tiny-disclaimer { font-size: 0.75rem; color: #aaa; margin-top: 20px; }

/* --- Brown Footer --- */
.brown-footer { background: var(--primary-brown); color: white; padding: 80px 0; }
.brown-footer h2 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 15px; color: white; }
.brown-footer p { opacity: 0.9; margin-bottom: 30px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
.mail-icon { font-size: 2rem; margin-bottom: 20px; opacity: 0.8; color: white; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: center;
}

.footer-column {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.footer-column:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.footer-single {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}



.newsletter-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; }
.newsletter-form input {
    flex: 1; padding: 15px 20px; border-radius: 50px; border: none; outline: none; font-family: var(--font-sans);
}
.newsletter-form button {
    background: white;
    color: var(--primary-brown);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    white-space: nowrap;
}
.newsletter-form button:hover { 
    background: #059669; 
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- Bottom Links --- */
.bottom-links { padding: 80px 0; background: white; }
.bottom-links h3 { font-size: 1.4rem; margin-bottom: 15px; letter-spacing: -0.5px; }
.bottom-links p { color: var(--text-grey); font-size: 1rem; margin-bottom: 35px; }

.social-icons { margin-bottom: 50px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.social-icons a {
    color: var(--text-dark); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; 
    border: 1px solid #e0e0e0; padding: 10px 20px; border-radius: 50px; transition: all 0.2s;
}
.social-icons a:hover { border-color: var(--text-dark); background: #f9f9f9; }

.footer-logo { font-family: var(--font-sans); font-weight: 800; margin-bottom: 15px; font-size: 1.3rem; letter-spacing: -0.5px; }
.footer-logo-img { max-width: 120px; height: auto; display: block; margin: 0 auto; }
.copyright { font-size: 0.9rem; color: var(--text-grey); max-width: 500px; margin: 0 auto 10px; line-height: 1.5; }
.copyright.tiny { font-size: 0.75rem; margin-top: 20px; color: #ccc; }

/* --- Navigation Bar --- */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-brown);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-links .btn-brown {
    color: white !important;
}

/* --- Page Hero --- */
.page-hero {
    background: linear-gradient(135deg, #ECFDF5 0%, #F9F8F6 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(4, 120, 87, 0.1);
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-grey);
    max-width: 800px;
    margin: 0 auto;
}

/* --- Content Grid --- */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(4, 120, 87, 0.15);
}

.mb-5 {
    margin-bottom: 50px;
}

/* --- About Content --- */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-top: 40px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* --- Story Cards Grid --- */
.about-story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.story-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: var(--primary-brown);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.story-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 12px;
}

.story-card p:last-child {
    margin-bottom: 0;
}

/* --- Simple About Content --- */
.about-content-simple {
    max-width: 850px;
    margin: 0px auto 0;
    background: white;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.about-content-simple p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-content-simple p:last-child {
    margin-bottom: 0;
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- CTA Buttons --- */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* --- Criteria Intro --- */
.criteria-intro {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-brown);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.criteria-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* --- Criteria List --- */
.criteria-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.criteria-item {
    display: flex;
    gap: 25px;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.criteria-item:hover {
    box-shadow: 0 12px 40px rgba(4, 120, 87, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-brown);
}

.criteria-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, #065f46 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.criteria-item:hover .criteria-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

/* --- Highlight Cards --- */
.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight-icon.success {
    background: #ECFDF5;
    color: var(--primary-brown);
}

.highlight-icon.warning {
    background: #FEF3C7;
    color: #D97706;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.criteria-checklist {
    list-style: none;
    padding: 0;
}

.criteria-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.criteria-checklist i {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.criteria-checklist.negative i {
    color: #DC2626;
}

/* --- Process Steps --- */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, #065f46 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    color: var(--primary-brown);
    font-size: 2rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .main-title { font-size: 2.8rem; }
    .page-title { font-size: 2.5rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-logo-title { margin: 0 auto 25px; } /* Center logo on mobile */
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-buttons { align-items: center; margin: 0 auto; }
    .hero-img { transform: rotate(0); margin-top: 20px; }
    
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    
    .footer-column { padding: 30px; }
    .footer-column:first-child { margin-bottom: 20px; } /* Add spacing between stacked cards */
    .footer-grid { gap: 0; } /* Grid gap handled by margin on first child */
    
    /* New page styles mobile */
    .nav-links { 
        flex-direction: column; 
        gap: 15px;
        display: none; /* Hide on mobile - you may want to add a hamburger menu */
    }
    
    .content-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .criteria-list { grid-template-columns: 1fr; }
    .commitment-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 30px auto 0; }
    .cta-buttons .btn { width: 100%; }
}

/* --- Highlight Cards --- */
.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.highlight-icon.success {
    background: #ECFDF5;
    color: var(--primary-brown);
}

.highlight-icon.warning {
    background: #FEF3C7;
    color: #D97706;
}

.highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.criteria-checklist {
    list-style: none;
    padding: 0;
}

.criteria-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.criteria-checklist i {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.criteria-checklist.negative i {
    color: #DC2626;
}

/* --- Process Steps --- */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, #065f46 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

.process-arrow {
    color: var(--primary-brown);
    font-size: 2rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .main-title { font-size: 2.8rem; }
    .page-title { font-size: 2.5rem; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-logo-title { margin: 0 auto 25px; } /* Center logo on mobile */
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-buttons { align-items: center; margin: 0 auto; }
    .hero-img { transform: rotate(0); margin-top: 20px; }
    
    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }
    
    .footer-column { padding: 30px; }
    .footer-column:first-child { margin-bottom: 20px; } /* Add spacing between stacked cards */
    .footer-grid { gap: 0; } /* Grid gap handled by margin on first child */
    
    /* New page styles mobile */
    .nav-links { 
        flex-direction: column; 
        gap: 15px;
        display: none; /* Hide on mobile - you may want to add a hamburger menu */
    }
    
    .content-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .criteria-list { grid-template-columns: 1fr; }
    .commitment-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; }
    .process-arrow { transform: rotate(90deg); }
    .cta-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 30px auto 0; }
    .cta-buttons .btn { width: 100%; }
    
    /* Eligibility page mobile */
    .eligibility-intro-box { flex-direction: column; text-align: center; padding: 30px; }
    .alt-item, .alt-item.reverse { flex-direction: column; text-align: center; }
    .alt-icon-box { width: 80px; height: 80px; font-size: 2rem; }
    .ethos-content { flex-direction: column; text-align: center; }
    .inline-suggest-form { flex-direction: column; }
    .inline-suggest-form button { width: 100%; }
    
    /* About Us page mobile */
    .about-intro-box { flex-direction: column; text-align: center; padding: 25px; }
    .about-alt-item, .about-alt-item.reverse { flex-direction: column; text-align: center; }
    .about-alt-icon-box { width: 70px; height: 70px; font-size: 1.8rem; }
}
/* --- Modal Styles --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.5); 
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 2rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: slideIn 0.3s;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.modal p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-brown);
}

@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;} 
    to {transform: translateY(0); opacity: 1;}
}

/* Footer Button Override */
.suggest-btn-wrapper .btn-outline-light {
    background: white; /* Solid white background */
    border: 1px solid white;
    color: var(--primary-brown); /* Green text */
    padding: 1rem 2rem; /* Slightly larger padding */
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem; /* Slightly larger text */
    font-weight: 700; /* Bold text */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Subtle shadow */
}

.suggest-btn-wrapper .btn-outline-light:hover {
    background: #f0fdf4; /* Light mint on hover */
    color: var(--primary-brown);
    border-color: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2); /* Stronger shadow on hover */
}

/* --- Cookie Consent Popup --- */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUp 0.5s ease-out forwards;
    border-left: 5px solid var(--primary-brown);
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.btn-cookie-accept {
    background: var(--primary-brown);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: #065f46;
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-grey);
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.btn-cookie-decline:hover {
    background: #f9fafb;
    color: var(--text-dark);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .cookie-popup {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        border-left: none;
        border-top: 5px solid var(--primary-brown);
    }
}
