body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hero {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 8px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.hero p {
    margin: 15px 0;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 10%;
    flex-wrap: wrap;
    text-align: center;
}

.feature {
    width: 280px;
}

.location {
    padding: 60px 10%;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
}