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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
}

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

/* Header */
.header {
    padding: 20px 0;
    background: #D4E9F7;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2D3748;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #2D3748;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #2D3748;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.nav-cta {
    background: #2D3748;
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #D4E9F7 0%, #FFFFFF 100%);
    text-align: center;
}

.hero-title {
    font-size: 56px;
    color: #2D3748;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-description {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: #FF4D8F;
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    margin-bottom: 50px;
}

.hero-button:hover {
    background: #e63d7a;
}

.hero-image {
    max-width: 700px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-title {
    font-size: 40px;
    color: #2D3748;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.feature-text {
    background: #FFFFFF;
}

.feature-title {
    font-size: 22px;
    color: #2D3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.7;
}

.feature-image {
    grid-column: 2;
    grid-row: 1 / 3;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
}

/* Locations & Who Section */
.locations-who {
    padding: 80px 0;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFF4CC 100%);
}

.locations-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.locations-box,
.who-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
}

.locations-box .section-title,
.who-box .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 25px;
}

.location-description,
.who-description {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Rooms Section */
.rooms {
    padding: 80px 0;
    background: #D4E9F7;
}

.rooms-subtitle {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

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

.room-card {
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.room-card-green {
    background: #B8E986;
}

.room-card-pink {
    background: #FF4D8F;
    color: white;
}

.room-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.room-card-pink .room-title {
    color: white;
}

.room-check {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
}

.room-description {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.room-card-pink .room-description {
    color: white;
}

.room-button {
    background: #2D3748;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
}

.room-button:hover {
    background: #1a202c;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-subtitle {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #2D3748;
}

.faq-toggle {
    background: #2D3748;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.7;
    margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #D4E9F7;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #2D3748;
    font-size: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F7FAFC;
    padding: 40px;
    border-radius: 15px;
}

.form-input,
.form-textarea {
    padding: 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    background: #2D3748;
    color: white;
    border: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #1a202c;
}

.contact-info-section .section-title {
    text-align: left;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info-box {
    background: #FFF4CC;
    padding: 30px;
    border-radius: 12px;
}

.contact-info-box p {
    font-size: 14px;
    color: #2D3748;
    margin-bottom: 12px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #2D3748;
    color: white;
    text-align: center;
}

.footer-brand {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #D4E9F7;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .nav.active {
        transform: translateX(0);
    }

    .hero-title {
        font-size: 42px;
    }

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

    .feature-image {
        grid-column: 1;
        grid-row: auto;
    }

    .locations-who-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 32px;
    }
}