
body{
    font-family:Arial,sans-serif;
    background:#ededed;
    margin:0;
    padding:0;
}

.container{
    max-width:1100px;
    margin:20px auto;
    background:white;
    padding:20px;
    border-radius:10px;
}

h1{
    font-size:42px;
}

.price{
    display:inline-block;
    background:#ffe4e4;
    color:#d10000;
    padding:10px 18px;
    border-radius:20px;
    font-weight:bold;
    margin:15px 0;
}

.subtitle{
    color:#555;
}

.contact{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
    margin:20px 0;
}

.contact a{
    color:#2b55ff;
    text-decoration:none;
}

.btn{
    background:#2f63ff;
    color:white !important;
    padding:12px 20px;
    border-radius:10px;
    font-weight:bold;
}

.description{
    line-height:1.8;
}

ul{
    line-height:1.9;
}

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

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

footer{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #ccc;
}

@media(max-width:768px){
    h1{
        font-size:30px;
    }

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