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

body{
    font-family:Arial,sans-serif;
    line-height:1.6;
    color:#333;

    background:repeating-linear-gradient(
        90deg,
        #ffd6e7 0px,
        #ffd6e7 80px,
        #fff0f7 80px,
        #fff0f7 160px
    );
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#f06292;
    color:white;
    padding:20px 0;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

header h1{
    margin-bottom:10px;
}

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

nav a:hover{
    text-decoration:underline;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:rgba(255,255,255,.85);
}

.hero h2{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    max-width:700px;
    margin:auto;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#f06292;
    color:white;
    text-decoration:none;
    padding:12px 25px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}

.btn:hover{
    opacity:.9;
}

.page-header{
    text-align:center;
    padding:60px 20px;
    background:rgba(255,255,255,.85);
}

.page-header h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

.content{
    padding:50px 0;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:25px;
    border-radius:10px;
    border:2px solid #ffc2d8;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:10px;
    color:#f06292;
}

.about-preview,
.testimonial{
    padding:60px 0;
    text-align:center;
    background:rgba(255,255,255,.85);
}

.testimonial blockquote{
    font-style:italic;
    margin-bottom:15px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.gallery-item{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}

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

.gallery-item h3{
    text-align:center;
    padding:15px;
    color:#f06292;
}

.contact-form{
    background:white;
    padding:30px;
    border-radius:10px;
    max-width:700px;
    margin:auto;
    box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.contact-form label{
    display:block;
    margin-top:15px;
    margin-bottom:5px;
    font-weight:bold;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form button{
    margin-top:20px;
}

footer{
    background:#f06292;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:40px;
}

ul{
    margin-top:15px;
    padding-left:20px;
}

li{
    margin-bottom:8px;
}

@media(max-width:768px){

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

    nav{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

}
