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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #6b7280;
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Mission Section */
.mission {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.mission-content {
    margin: 0 auto;
    text-align: center;
}

.mission h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.mission p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Impact Stats */
.stats {
    padding: 5rem 2rem;
    background: white;
}

.stats-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
}

/* Programs Preview */
.programs {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
}

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

.program-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}


/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: #2563eb;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About - Story Section */
.story-section {
    padding: 5rem 2rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* About - Mission & Vision */
.mission-vision {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mv-card h2 {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mv-card h2 .material-symbols-outlined {
    font-size: 2.5rem;
}

.mv-card p {
    font-size: 1.1rem;
}

/* About - Values Section */
.values-section {
    padding: 5rem 2rem;
}

.values-container h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon .material-symbols-outlined {
    font-size: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Programs Intro */
.programs-intro {
    padding: 4rem 2rem;
    text-align: center;
}

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

.programs-intro h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.programs-intro p {
    font-size: 1.1rem;
}

/* Program Details */
.program-section {
    padding: 4rem 2rem;
}

.program-section:nth-child(even) {
    background: #f9fafb;
}

.program-section:nth-child(odd) {
    background: white;
}

.program-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.program-info h2 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.program-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.program-features {
    list-style: none;
    margin-top: 2rem;
}

.program-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1.05rem;
}

.program-features li:before {
    content: "✓";
    color: #2563eb;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.program-features li:last-child {
    border-bottom: none;
}

.program-visual {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 15px;
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.program-visual .material-symbols-outlined {
    font-size: 8rem;
}

/* Impact Section */
.impact-section {
    padding: 5rem 2rem;
    background: #2563eb;
    color: white;
    text-align: center;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.impact-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.impact-item p {
    font-size: 1.2rem;
}

/* Get Involved - Ways to Help Section */
.ways-section {
    padding: 5rem 2rem;
}

.ways-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ways-container h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ways-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.way-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 2px solid transparent;
}

.way-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.way-icon {
    margin-bottom: 1.5rem;
}

.way-icon .material-symbols-outlined {
    font-size: 5rem;
    color: #2563eb;
}

.way-card h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.way-card p {
    margin-bottom: 1.5rem;
}

.way-button {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.way-button:hover {
    background: #1e40af;
}

/* Volunteer and Donation Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.form-section:nth-child(odd) {
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-section:nth-child(odd) .form-container {
    background: #f9fafb;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #2563eb;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.form-group textarea {
    min-height: 120px;
}

/* Gender Options */
.gender-options {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.gender-options label {
    display: flex;
    gap: 0.5rem;
    font-weight: normal;
}

/* Submit Button */
.submit {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit:hover {
    background: #1e40af;
}

/* Partnership Section */
.partnership-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.partnership-content {
    margin: 0 auto;
    text-align: center;
}

.partnership-content h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.partnership-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.partnership-types {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.partnership-type {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.partnership-type h4 {
    color: #2563eb;
    font-size: 1.2rem;
}

/* Contact Info Section */
.contact-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-container {
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-card {
    background: #f9fafb;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.contact-icon .material-symbols-outlined {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #2563eb;
}

/* Social Media Section */
.social-section {
    padding: 5rem 2rem;
    background: white;
}

.social-container {
    margin: 0 auto;
    text-align: center;
}

.social-container h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-container p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 15px;
    text-decoration: none;
    color: #4b5563;
    transition: 0.3s;
    min-width: 120px;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-5px);
}

.social-link strong {
    font-size: 1rem;
}

/* Font Awesome Icons for Social Media */
.social-link i {
    font-size: 2.5rem;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    border-radius: 3px;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: 0.3s;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    /* Hide program visual on mobile */
    .program-visual {
        display: none;
    }
  
    .ways-grid,
    .programs-grid,
    .contact-grid,
    .mv-container,
    .program-content {
        grid-template-columns: 1fr;
    }

    .partnership-types,
    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}