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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.4rem;
    color: #e91e63;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav ul li a:hover {
    color: #e91e63;
}

.nav ul li a.btn-nav {
    background: #e91e63;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
}

.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: url('images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(156, 39, 176, 0.85));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content h2 span {
    color: #ffd54f;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background: #ffd54f;
    color: #880e4f;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffca28;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #e91e63;
}

.section-tag {
    display: inline-block;
    color: #e91e63;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #880e4f;
    font-weight: 700;
}

.about {
    padding: 100px 20px;
    background: #fce4ec;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-content h2 {
    font-size: 2.3rem;
    color: #880e4f;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    display: block;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.programs {
    padding: 100px 20px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.program-card h3 {
    color: #880e4f;
    margin-bottom: 15px;
    font-weight: 600;
}

.program-card p {
    color: #666;
    font-size: 0.95rem;
}

.impact {
    padding: 100px 20px;
    background: #fce4ec;
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.impact-content h2 {
    font-size: 2.3rem;
    color: #880e4f;
    margin-bottom: 20px;
    font-weight: 700;
}

.impact-content > p {
    color: #555;
    margin-bottom: 30px;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
}

.impact-item span {
    font-size: 1.5rem;
}

.impact-item p {
    color: #555;
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.cta-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.cta-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd54f;
}

.cta-card .btn-primary {
    width: 100%;
    text-align: center;
}

.footer {
    background: #880e4f;
    color: #fff;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.85;
}

.footer-legal h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-legal .nonprofit-status {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd54f;
    margin-bottom: 10px;
}

.footer-legal .ein-number {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact .email-large {
    font-size: 1.2rem;
    margin-top: 15px;
}

.footer-contact .email-large a {
    color: #ffd54f;
    text-decoration: none;
}

.footer-contact .email-large a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0.7;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffd54f;
    color: #880e4f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    display: flex;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    position: relative;
}

.modal-content.thank-you {
    text-align: center;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.modal-content h2 {
    color: #880e4f;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #880e4f;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e91e63;
}

.modal .btn-primary {
    width: 100%;
}

@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid, .impact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
    }

    .nav.show {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
