* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fcf8fc;
    color: #5f3b6e;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(252, 250, 247, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e7d8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 20px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e7d8f0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.brand h1 {
    font-size: 22px;
    color: #5f3b6e;
}

.brand p {
    font-size: 14px;
    color: #8b6f96;
}

nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

nav a {
    color: #5f3b6e;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    background: #f2e8f8;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #a06bb5;
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: #7b665c;
    border: 1px solid #d9c2e6;
}

.btn-secondary:hover {
    background: #f6eefb;
}

.hero {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.tag {
    display: inline-block;
    background: #eadcf4;
    color: #7d4c92;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #6f625c;
    margin-bottom: 28px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    background: white;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #efe4f5;
}

.stat strong {
    display: block;
    font-size: 22px;
    margin-bottom: 6px;
}

.stat span {
    color: #8b6f96;
    font-size: 14px;
}

.hero-image {
    background: white;
    border: 1px solid #e7d8f0;
    border-radius: 32px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.image-placeholder {
    background: #f6eefb;
    border: 2px dashed #d7c0e4;
    border-radius: 24px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: #8b6f96;
}

section {
    padding: 40px 0 70px;
}

.section-title {
    text-align: center;
    margin-bottom: 18px;
    color: #b08c77;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 40px;
    margin-bottom: 18px;
}

.section-text {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 35px;
    color: #6f625c;
    font-size: 18px;
}

.about-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.about-box h3 {
    font-size: 34px;
    margin-bottom: 18px;
}

.about-box p {
    font-size: 18px;
    color: #6f625c;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.benefit {
    background: #fcf8fc;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #efe4f5;
    font-weight: 600;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #eadcf4;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d4c92;
    font-size: 24px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.card p {
    color: #6f625c;
    font-size: 17px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.highlight-box,
.teacher-box,
.contact-box {
    padding: 36px;
    border-radius: 32px;
}

.highlight-box {
    background: #f2e8f8;
}

.teacher-box,
.contact-wrapper {
    background: white;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.highlight-box h3,
.teacher-box h3,
.contact-box h3 {
    font-size: 34px;
    margin: 12px 0 18px;
}

.highlight-box p,
.teacher-box p,
.contact-box p {
    color: #6f625c;
    font-size: 18px;
    margin-bottom: 12px;
}

.list-item {
    margin-bottom: 12px;
    color: #6f625c;
    font-size: 18px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.testimonial {
    background: white;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.testimonial p {
    color: #6f625c;
    font-size: 18px;
    margin-bottom: 18px;
}

.testimonial strong {
    color: #5f3b6e;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px;
    border-radius: 32px;
}

.contact-info p {
    margin-bottom: 14px;
    font-size: 18px;
    color: #6f625c;
}

.contact-info strong {
    color: #5f3b6e;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.map-box {
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e7d8cf;
    background: #f6eefb;
}

footer {
    border-top: 1px solid #e7d8f0;
    padding: 26px 0;
    color: #8b6f96;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.team-card {
    background: white;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: block;
    border: 4px solid #e7d8f0;
}

.team-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #5f3b6e;
}

.team-role {
    display: inline-block;
    margin-bottom: 16px;
    color: #7d4c92;
    font-weight: 600;
}

.team-card p {
    color: #8b6f96;
    font-size: 17px;
    line-height: 1.7;
}

.faq-list {
    max-width: 900px;
    margin: 30px auto 0;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #efe4f5;
    border-radius: 22px;
    padding: 22px 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    font-weight: 700;
    color: #5f3b6e;
    position: relative;
    padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
    color: #7d4c92;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 14px;
    color: #6f625c;
    font-size: 17px;
    line-height: 1.7;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 2000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    opacity: 0.95;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #efe4f5;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-item.large .gallery-photo {
    min-height: 578px;
}



@media (max-width: 980px) {
    .container {
        padding: 0 18px;
    }

    .hero-grid,
    .about-box,
    .two-columns,
    .contact-wrapper,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero-photo {
        height: 460px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .gallery-item.wide {
        grid-column: auto;
    }

    .gallery-item.large .gallery-photo {
        min-height: 360px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 14px;
    }

    header {
        position: static;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 0;
    }

    .brand-wrap {
        gap: 10px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand h1 {
        font-size: 18px;
        line-height: 1.2;
    }

    .brand p {
        font-size: 12px;
    }

    nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    nav a {
        text-align: center;
        padding: 10px 12px;
        font-size: 14px;
    }

    nav a.btn {
        grid-column: 1 / -1;
    }

    .hero {
        padding: 24px 0 20px;
    }

    .hero-grid,
    .about-box,
    .two-columns,
    .contact-wrapper,
    .team-grid,
    .cards,
    .testimonials,
    .hero-stats,
    .benefits {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 20px;
    }

    .tag {
        font-size: 12px;
        padding: 8px 12px;
        margin-bottom: 14px;
    }

    .hero h2 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero p,
    .section-text,
    .about-box p,
    .highlight-box p,
    .teacher-box p,
    .contact-info p,
    .team-card p,
    .card p,
    .testimonial p,
    .list-item {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons,
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn,
    .contact-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stat {
        padding: 16px;
        border-radius: 18px;
    }

    .stat strong {
        font-size: 18px;
    }

    .stat span {
        font-size: 13px;
    }

    .hero-image {
        padding: 10px;
        border-radius: 24px;
    }

    .hero-photo {
        height: 360px;
        border-radius: 18px;
        object-position: center top;
    }

    section {
        padding: 24px 0 40px;
    }

    .section-title {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-subtitle,
    .about-box h3,
    .highlight-box h3,
    .teacher-box h3,
    .contact-box h3 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .about-box,
    .highlight-box,
    .teacher-box,
    .contact-wrapper,
    .card,
    .testimonial,
    .team-card {
        padding: 18px;
        border-radius: 22px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .card h3,
    .team-card h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .team-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 14px;
    }

    .team-role {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .map-box {
        min-height: 260px;
    }

    footer {
        padding: 18px 0;
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .faq-item {
        padding: 18px;
        border-radius: 18px;
    }

    .faq-item summary {
        font-size: 17px;
        line-height: 1.4;
    }

    .faq-item p {
        font-size: 15px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: 14px;
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item,
    .gallery-photo {
        border-radius: 18px;
    }

    .gallery-photo,
    .gallery-item.large .gallery-photo {
        min-height: 240px;
    }
}