* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color: #333; }
header { background: #004080; color: #fff; padding: 15px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; }
.contact-buttons .btn { margin-left: 10px; padding: 10px 15px; color: #fff; text-decoration: none; border-radius: 4px; }
.call-btn { background: #FFD700; color: #000; }
.whatsapp-btn { background: #25D366; }
.slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; display: none; }
.slide.active { display: block; }
.booking, .services, .about-contact { padding: 40px 20px; text-align: center; }
.booking form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; justify-content: center; align-items: center; }
.booking form label { display: flex; flex-direction: column; margin-bottom: 10px; }
.booking button, .pay-btn { margin-top: 10px; padding: 10px 20px; border: none; background: #004080; color: #fff; border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-block; }
.service-cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: #f8f9fa; padding: 20px; width: 200px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.about-contact { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.about, .contact { width: 300px; }
.map iframe { width: 100%; height: 200px; border: none; }
footer { background: #222; color: #fff; text-align: center; padding: 10px; }
@media (max-width:768px) {
    .booking form { grid-template-columns: 1fr; }
    .about-contact { flex-direction: column; }
}