body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; line-height: 1.6; color: #333; }
.container { max-width: 1100px; margin: auto; padding: 20px; }
.main-nav { display: flex; justify-content: space-between; align-items: center; background: #222; color: white; padding: 1rem 5%; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; }

/* Booking Page Specifics */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
.service-card { border: 1px solid #ddd; padding: 20px; border-radius: 8px; transition: 0.3s; }
.service-card:hover { border-color: #f89406; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
form { background: #f4f4f4; padding: 30px; border-radius: 8px; }
input, select { width: 100%; padding: 10px; margin: 10px 0 20px; }
.btn-primary { background: #f89406; color: white; border: none; padding: 15px 30px; cursor: pointer; border-radius: 5px; width: 100%; font-weight: bold; }
.terms-box { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; font-size: 0.9rem; }