*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#fff7fb;
    color:#111;
}

nav{
    background:#202020;
    padding:22px;
    text-align:center;
    position:sticky;
    top:0;
    z-index:1000;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-weight:bold;
}

nav a:hover{
    color:#ff69b4;
}

.hero{
    background:linear-gradient(135deg,#ffe4f1,#ffd1e8,#fff5fa);
    text-align:center;
    padding:90px 20px;
}

.hero h1{
    font-size:52px;
    margin:15px 0 10px;
}

.hero p{
    font-size:20px;
    font-weight:bold;
}

.logo{
    width:170px;
    height:auto;
    margin-bottom:20px;
}

.main-btn,
button{
    display:inline-block;
    background:#ff69b4;
    color:white;
    padding:14px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:bold;
    margin:8px;
    cursor:pointer;
    border:none;
    font-size:16px;
}

.about-preview{
    background:white;
    padding:80px 20px;
    text-align:center;
}

.about-preview h2,
.section-title{
    font-size:36px;
    text-align:center;
    margin:40px 0 20px;
}

.about-preview p{
    max-width:750px;
    margin:18px auto;
    line-height:1.7;
    font-weight:bold;
}

.services{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    padding:70px 20px;
}

.card{
    width:260px;
    background:white;
    padding:30px;
    border-radius:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:center;
}

.price-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
    padding:70px 20px;
    background:#fff7fb;
}

.price-box{
    width:360px;
    background:white;
    padding:30px;
    border-radius:24px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.price-box h2{
    text-align:center;
    margin-bottom:25px;
    color:#ff4fa3;
}

.price-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px dashed #f2a6c8;
    padding:12px 0;
    gap:15px;
    font-size:16px;
}

.price-row span{
    text-align:left;
}

.price-row strong{
    white-space:nowrap;
    color:#ff4fa3;
}

.gallery{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    padding:50px 20px 80px;
    background:#fff7fb;
}

.gallery-card{
    width:260px;
    background:white;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    text-align:center;
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.gallery-card h3{
    padding:15px;
}

.center{
    text-align:center;
    margin:30px 0 60px;
}

.contact-card{
    background:white;
    max-width:700px;
    margin:30px auto;
    padding:35px;
    border-radius:24px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    text-align:center;
}

.contact-card p{
    margin:12px 0;
    font-weight:bold;
}

.contact-card textarea,
.contact-card input,
select{
    width:100%;
    padding:14px;
    border:1px solid #eee;
    border-radius:14px;
    margin:8px 0 15px;
    font-size:15px;
}

.contact-card textarea{
    height:120px;
}

.map-box{
    max-width:900px;
    margin:30px auto;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.map-box iframe{
    display:block;
    width:100%;
    height:300px;
}

.footer{
    background:#202020;
    color:white;
    text-align:center;
    padding:22px;
    margin-top:40px;
}

@media(max-width:768px){
    nav a{
        display:inline-block;
        margin:8px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:17px;
    }

    .logo{
        width:135px;
    }

    .price-box,
    .gallery-card,
    .card{
        width:100%;
        max-width:360px;
    }
}