* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: rgb(255, 217, 0);
    --primary-light:rgb(237, 208, 46);
    --primary-dark: gold;
    
    /* Background Colors */
    --bg-primary: hsl(0, 0%, 100%);
    --bg-secondary: hsl(210, 40%, 98%);
    --bg-accent: hsl(210, 40%, 96%);
    
    /* Text Colors */
    --text-primary: hsl(222.2, 84%, 4.9%);
    --text-secondary: hsl(215.4, 16.3%, 46.9%);
    --text-muted: hsl(215.4, 16.3%, 56.9%);
    
    /* Border Colors */
    --border: hsl(214.3, 31.8%, 91.4%);
    --border-light: hsl(220, 13%, 91%);
    
    /* Accent Colors */
    --accent-orange: hsl(25, 95%, 53%);
    --accent-blue: hsl(221, 83%, 53%);
    --accent-purple: hsl(262, 83%, 58%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar and Footer styling removed - handled by style2.css */

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.hero-title {
    margin-top: 60px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    font-family: 'Lora', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Lora', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background-color:rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    padding: 10px 20px;
    border: 2px solid black;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mission-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-accent);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mission-statement {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-accent);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background-color: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pillar-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pillar-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Synergy Section */
.synergy-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.synergy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.synergy-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.testimonial-card {
    background-color: var(--bg-accent);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--accent-blue);
}

.testimonial-quote {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Stories Section */
.stories-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background-color: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.video-embed {
    width: 100%;
    height: 400px;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Engagement Section */
.engagement-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.engagement-card {
    background-color: var(--bg-accent);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-orange);
}

.engagement-card:nth-child(2) {
    border-top-color: var(--accent-blue);
}

.engagement-card:nth-child(3) {
    border-top-color: var(--accent-purple);
}

.engagement-card:hover {
    transform: translateY(-8px);
}

.engagement-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.engagement-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.engagement-cta {
    display: inline-block;
    background-color: var(--primary);
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.engagement-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.support-message {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    border: 2px dashed var(--primary);
}

.support-message p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

/* Footer styling removed - handled by style2.css */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .pillars-grid,
    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .pillar-card,
    .engagement-card {
        padding: 1.5rem;
    }
}