body {
    font-family: Arial, sans-serif;
    background: #f7f9fc;
    color: #1e293b;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.booking-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.btn-success {
    background: #16a34a;
    border: none;
}

.btn-success:hover {
    background: #15803d;
}