
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #eaf6ff;
    color: #0b2b66;
}
header {
    background-color: #eaf6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
header img {
    height: 70px;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #0b2b66;
    font-weight: 600;
}
nav a:hover {
    color: #f95fb0;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    max-width: 500px;
}
.hero-text h1 {
    font-size: 50px;
    margin: 0;
}
.hero-text h2 {
    font-size: 24px;
    margin-top: 10px;
}
.hero-text p {
    margin-top: 20px;
}
.buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.buttons .pink {
    background-color: #f95fb0;
    color: white;
}
.buttons .white {
    background-color: white;
    color: #f95fb0;
    border: 2px solid #f95fb0;
}
.section {
    padding: 50px;
    background-color: #fff3d6;
    text-align: center;
}
.section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}
.offers {
    list-style: none;
    padding: 0;
    line-height: 2;
    font-size: 18px;
}
.why {
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: white;
    padding: 50px;
    flex-wrap: wrap;
}
.why img {
    width: 300px;
    border-radius: 10px;
}
.gallery {
    background-color: #eaf6ff;
    text-align: center;
    padding: 40px;
}
footer {
    background-color: #0b2b66;
    color: white;
    padding: 20px 50px;
}
footer p {
    margin: 5px 0;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }
    .why {
        flex-direction: column;
    }
}
