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


header {
    background:#0b6e8e;
    color:white;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}


.logo {
    font-size:24px;
    font-weight:bold;
}


nav a {
    color:white;
    margin:0 10px;
    text-decoration:none;
}


.hero {
    position:relative;
}


.hero img {
    width:100%;
    height:600px;
    object-fit:cover;
}


.hero-text {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:rgba(0,0,0,.45);
    color:white;
    padding:30px;
    text-align:center;
    border-radius:10px;
}


.price {
    font-size:24px;
}


.button {
    display:inline-block;
    background:#d6a85f;
    color:white;
    padding:15px 25px;
    border-radius:30px;
    text-decoration:none;
    margin-top:15px;
}


.content {
    max-width:900px;
    margin:auto;
    padding:40px 20px;
    text-align:center;
}


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


.gallery {
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}


.gallery img {
    width:350px;
    border-radius:15px;
}


footer {
    background:#0b6e8e;
    color:white;
    text-align:center;
    padding:20px;
}


@media(max-width:700px){

header {
    flex-direction:column;
}

.hero img {
    height:450px;
}

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

}