body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

header {
    position: absolute;
    width: 100%;
    color: white;
    padding: 20px;
}

.nav h1 {
    margin: 0;
}

.hero {
    height: 100vh;
    background: url('images/yacht.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    color: white;
    text-align: center;
}

.btn {
    background: #C9A35A;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.gallery img {
    width: 22%;
    margin: 1%;
    border-radius: 10px;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.grid div {
    width: 200px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
}

.pricing {
    background: #0E4C81;
    color: white;
}

.cta {
    background: #1F6FB2;
    color: white;
}

footer {
    background: #222;
    color: white;
    padding: 20px;
}
