body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffe6f0;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #ff99cc;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffe6f0;
}

.hero-section {
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-section img {
    max-width: 100%;
    border-radius: 10px;
}

section {
    padding: 60px 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-map img, .section-gallery img {
    max-width: 100%;
    border-radius: 10px;
}

.tips-list {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-subscribe form {
    margin-top: 20px;
}

.section-subscribe input[type="email"] {
    padding: 10px;
    width: 250px;
    border: 1px solid #ff99cc;
    border-radius: 5px;
}

.section-subscribe button {
    padding: 10px 20px;
    border: none;
    background-color: #ff6699;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.section-subscribe button:hover {
    background-color: #ff3385;
}

.footer-section {
    background-color: #ff99cc;
    color: white;
    padding: 40px 20px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffe6f0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin: 10px 0;
    }
}
