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

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

/* Navigation */
nav {
    background: #000;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #eb6d9f;
}

/* Hero Section */
.hero {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 400;
}

.hero .subtitle {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.hero-image-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #666;
    margin: 2rem 0;
}

/* About Us Hero Section */
.about-hero {
    background: #eb6d9f;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 400;
}

.about-hero .subtitle {
    font-size: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.about-hero-image {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-gallery-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0 2rem;
}

.about-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s, border 0.3s;
    border: 3px solid transparent;
}

.about-gallery-thumbs img:hover,
.about-gallery-thumbs img.active-thumb {
    transform: scale(1.1);
    border: 3px solid #fff;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.program-box {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.program-box h3 {
    color: #000;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.program-box .overview-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.program-box ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.program-box ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-button {
    background: #eb6d9f;
    color: white;
    padding: 0.9rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #d65a8a;
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #000;
    padding-bottom: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.about-card {
    background: white;
    padding: 0;
    text-align: center;
}

.about-card-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.about-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    fill: #5a9fb0;
}

.about-card h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 400;
}

.about-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.about-card strong {
    color: #333;
}

.about-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.about-card ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.about-card ul li:before {
    content: "• ";
    color: #eb6d9f;
    font-weight: bold;
    margin-right: 0.5rem;
}

.expandable-content {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expandable-content.expanded {
    max-height: 1000px;
}

.show-more-btn {
    background: none;
    border: none;
    color: #eb6d9f;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    padding: 0.5rem;
    font-size: 1rem;
}

.show-more-btn:hover {
    text-decoration: underline;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #eb6d9f;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3:before {
    content: "●";
    color: #eb6d9f;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.info-card ul {
    margin-top: 1rem;
}

.info-card ul li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.info-card strong {
    color: #333;
    font-weight: 700;
}

/* Program Cards */
.program-card {
    background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(235, 109, 159, 0.15);
    border: 2px solid #eb6d9f;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(235, 109, 159, 0.25);
}

.program-card h3 {
    color: #eb6d9f;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.program-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

.program-card ul {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.program-card ul li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    position: relative;
}

.program-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #eb6d9f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #eb6d9f 0%, #d65a8a 100%);
    margin: 3rem auto;
    border-radius: 2px;
}

/* Intro Text */
.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 4px solid #eb6d9f;
}

/* Embed Container */
.embed-container {
    margin: 2rem auto 3rem;
    max-width: 100%;
    text-align: center;
}

.embed-container iframe,
.embed-container video,
.embed-container embed,
.embed-container object {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.team-card h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
    font-weight: 600;
}

/* Stay in Touch Section */
.stay-in-touch {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.stay-in-touch h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stay-in-touch p {
    color: #666;
    margin-bottom: 2rem;
}

.email-signup {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-signup input {
    flex: 1;
    min-width: 250px;
    padding: 0.9rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.email-signup button {
    background: #eb6d9f;
    color: white;
    padding: 0.9rem 3rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-signup button:hover {
    background: #d65a8a;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin: 3rem 0;
}

.photo-gallery img,
.photo-gallery svg {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Forms */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-button {
    background: #eb6d9f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.submit-button:hover {
    background: #d65a8a;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-form-section h3,
.contact-info-section h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-form-section .form-group input,
.contact-form-section .form-group textarea {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 1rem;
    font-size: 0.95rem;
    color: #666;
}

.contact-form-section .form-group input::placeholder,
.contact-form-section .form-group textarea::placeholder {
    color: #999;
}

.contact-submit-button {
    background: #eb6d9f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contact-submit-button:hover {
    background: #d65a8a;
}

.contact-intro-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #5a6e7a;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 2rem 0;
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background: #4a5e6a;
}

.contact-organization-name {
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.contact-address {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-email {
    color: #eb6d9f;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.5rem;
}

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

/* Footer */
footer {
    background: #eb6d9f;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 0;
}

footer p {
    margin: 0.5rem 0;
}

.footer-social {
    margin: 1rem 0;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 250px;
        background: #000;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid #333;
    }

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

    .content-section h2 {
        font-size: 1.8rem;
    }

    .about-card-icon {
        width: 180px;
        height: 180px;
    }

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

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

    .program-box {
        padding: 2rem;
    }

    .about-gallery-thumbs img {
        width: 60px;
        height: 60px;
    }

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