        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--neutral-200);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-hover);
        }

     
        /* Page Title Section */
        .page-title {
            padding: 120px 0 var(--space-6);
            background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
            position: relative;
            overflow: hidden;
        }

        .page-title::before {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: 30%;
            left: 15%;
            width: 150px;
            height: 150px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        .page-title h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--neutral-800);
            text-align: center;
            position: relative;
        }

        .page-title .text-accent {
            color: var(--accent);
            position: relative;
        }

        .page-title .text-accent::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
            border-radius: 2px;
        }

        /* Section Styling */
        .section-header {
            margin-bottom: var(--space-5);
        }

        .icon-badge {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-3) auto;
            color: white;
            font-size: 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--neutral-800);
            margin-bottom: var(--space-2);
            position: relative;
            text-align: center;
        }

        /* Booking Info Section */
        .booking-info {
            padding: var(--space-6) 0;
            background: white;
        }

        .booking-description h2 {
            font-size: 2.2rem;
            color: var(--neutral-800);
            margin-bottom: var(--space-3);
            position: relative;
        }

        .booking-description h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .booking-description p {
            font-size: 1.1rem;
            color: var(--neutral-700);
            margin-bottom: var(--space-3);
            line-height: 1.7;
        }

        .booking-description ul {
            list-style: none;
            padding: 0;
            margin-bottom: var(--space-3);
        }

        .booking-description ul li {
            color: var(--neutral-700);
            margin-bottom: var(--space-1);
            padding-left: var(--space-3);
            position: relative;
        }

        .booking-description ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .booking-image img {
            box-shadow: 0 20px 60px rgba(166, 123, 91, 0.15);
            transition: var(--transition);
            border-radius: var(--border-radius);
        }

        .booking-image img:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(166, 123, 91, 0.2);
        }

        /* Calendly Widget Section */
        .calendly-section {
            padding: var(--space-6) 0;
            background: var(--neutral-200);
        }

        .calendly-container {
            background: white;
            border-radius: var(--border-radius);
            padding: var(--space-3);
            box-shadow: 0 20px 60px rgba(166, 123, 91, 0.15);
            margin: 0 auto;
            max-width: 900px;
        }

        .calendly-inline-widget {
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        /* What to Expect Section */
        .what-to-expect {
            padding: var(--space-6) 0;
            background: white;
        }

        .what-to-expect h2 {
            font-size: 2.5rem;
            color: var(--neutral-800);
            margin-bottom: var(--space-5);
            position: relative;
            text-align: center;
        }

        .step-card {
            background: var(--neutral-100);
            padding: var(--space-4);
            border-radius: var(--border-radius);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border: 2px solid transparent;
            margin-bottom: var(--space-3);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(166, 123, 91, 0.15);
            border-color: var(--primary);
            background: white;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-3) auto;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
        }

        .step-card:hover .step-icon {
            transform: scale(1.1);
        }

        .step-card h3 {
            color: var(--neutral-800);
            margin-bottom: var(--space-2);
            font-size: 1.3rem;
        }

        .step-card p {
            color: var(--neutral-700);
            font-size: 1rem;
        }

            /* Responsive Design */
        @media (max-width: 1199px) {
            .page-title h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 991px) {
            .page-title h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .booking-description h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            :root {
                --space-6: 2.5rem;
                --space-5: 2rem;
            }
            
            .page-title h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .booking-description h2 {
                font-size: 1.8rem;
            }
            
        }

        /* Animation classes */
        .animate-fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-card:nth-child(1) { animation-delay: 0.1s; }
        .step-card:nth-child(2) { animation-delay: 0.2s; }
        .step-card:nth-child(3) { animation-delay: 0.3s; }