    /* Hero Section */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        background-size: cover;
        background-position: center;
        height: 40vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--pure-white);
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--pure-white);
        animation: fadeIn 1s ease-out;
    }
    
    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        animation: fadeIn 1.2s ease-out;
    }
    
    /* Booking Section */
    .booking-section {
        padding: 60px 0;
        background-color: var(--pure-white);
    }
    
    .booking-container {
        max-width: 900px;
        margin: 0 auto;
        background-color: var(--pure-white);
        border-radius: 16px;
        box-shadow: 0 10px 30px var(--light-shadow);
        overflow: hidden;
    }
    
    .booking-header {
        background-color: var(--shea-butter);
        color: var(--pure-white);
        padding: 30px;
        text-align: center;
    }
    
    .booking-header h2 {
        color: var(--pure-white);
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .booking-header p {
        font-size: 16px;
        opacity: 0.9;
    }
    
    .booking-content {
        padding: 40px;
    }
    
    .booking-intro {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .booking-intro h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .booking-intro p {
        color: var(--neutral-dark);
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Service Selection */
    .service-selection {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--neutral-medium);
    }
    
    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .service-option {
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    
    .service-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 24px;
        width: 24px;
        background-color: var(--neutral-light);
        border: 2px solid var(--neutral-medium);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .service-option:hover .checkmark {
        border-color: var(--shea-butter);
    }
    
    .service-option input:checked ~ .checkmark {
        background-color: var(--shea-butter);
        border-color: var(--shea-butter);
    }
    
    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    
    .service-option input:checked ~ .checkmark:after {
        display: block;
    }
    
    .service-option .checkmark:after {
        left: 8px;
        top: 4px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }
    
    .service-details {
        margin-left: 15px;
    }
    
    .service-name {
        font-weight: 600;
        margin-bottom: 3px;
    }
    
    .service-info {
        font-size: 14px;
        color: var(--neutral-dark);
    }
    
    .service-price {
        font-weight: 600;
        color: var(--olive-green);
    }
    
    /* Form Styles */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid var(--neutral-medium);
        border-radius: 4px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        transition: all 0.2s ease;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--shea-butter);
        box-shadow: 0 0 0 3px rgba(214, 123, 93, 0.2);
    }
    
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .form-col {
        flex: 1;
        min-width: 250px;
    }
    
    textarea.form-control {
        resize: vertical;
        min-height: 100px;
    }
    
    .form-note {
        font-size: 14px;
        color: var(--neutral-dark);
        margin-top: 5px;
    }
    
    /* Staff Selection */
    .staff-selection {
        margin-bottom: 30px;
    }
    
    .staff-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .staff-option {
        position: relative;
        cursor: pointer;
    }
    
    .staff-option input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    
    .staff-card {
        border: 2px solid var(--neutral-medium);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .staff-option:hover .staff-card {
        border-color: var(--shea-butter);
        transform: translateY(-5px);
        box-shadow: 0 5px 15px var(--light-shadow);
    }
    
    .staff-option input:checked ~ .staff-card {
        border-color: var(--shea-butter);
        background-color: var(--almond-milk);
    }
    
    .staff-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 3px solid var(--pure-white);
        box-shadow: 0 5px 15px var(--light-shadow);
    }
    
    .staff-name {
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .staff-title {
        font-size: 14px;
        color: var(--neutral-dark);
    }
    
    .no-preference-option {
        grid-column: 1 / -1;
    }
    
    .no-preference-card {
        text-align: center;
        padding: 15px;
        background-color: var(--almond-milk);
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .no-preference-option input:checked ~ .no-preference-card {
        background-color: var(--honey-gold);
        color: var(--pure-white);
    }
    
    /* Form Submit */
    .form-submit {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--neutral-medium);
    }
    
    /* Success Message */
    .success-message {
        display: none;
        text-align: center;
        padding: 30px;
        animation: fadeIn 0.5s ease;
    }
    
    .success-icon {
        font-size: 80px;
        color: #2ECC71;
        margin-bottom: 20px;
    }
    
    .success-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .success-text {
        margin-bottom: 30px;
    }
    
    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes heartbeat {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .nav-links {
            display: flex; /* Keep the nav links visible */
        }
        
        .hamburger {
            display: none; /* Hide the hamburger */
        }
        
        .mobile-menu {
            display: none; /* Hide the mobile menu */
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            height: 60vh;
        }

        .hero-content{
            padding: 3px;
        }
        
        .hero-content h1 {
            font-size: 32px;
        }
        
        .booking-content {
            padding: 20px;
        }
        
        .service-grid, .staff-options {
            grid-template-columns: 1fr;
        }
        
        /* For smaller screens, we'll show a simplified navigation */
        .nav-links {
            display: none;
        }
        
        .hamburger {
            display: block;
        }
        
        .mobile-menu {
            display: block;
        }
    }
