
        :root {
            --primary: #0059b3;
            --secondary: #00b8d4;
            --accent: #ff9100;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --danger: #dc3545;
            --border-radius: 6px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--accent);
        }
        
        .page-header {
            background-color: var(--primary);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/1200/300') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }
        
        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .breadcrumb li {
            margin: 0 0.5rem;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
        }
        
        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }
        
        main {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
            color: #666;
        }
        
        .booking-section {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .booking-info {
            flex: 1;
            min-width: 300px;
        }
        
        .booking-calendar {
            flex: 2;
            min-width: 300px;
        }
        
        .info-card {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .info-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .info-card p {
            margin-bottom: 1rem;
        }
        
        .info-card ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .info-card ul li {
            margin-bottom: 0.5rem;
        }
        
        .booking-types {
            margin-bottom: 2rem;
        }
        
        .booking-type {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .booking-type:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .booking-type.active {
            border-color: var(--accent);
        }
        
        .booking-type-header {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem;
            position: relative;
        }
        
        .booking-type-header h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .booking-type-header p {
            opacity: 0.8;
            font-size: 1rem;
        }
        
        .booking-type-body {
            padding: 1.5rem;
        }
        
        .calendar-placeholder {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .calendar-placeholder h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .calendar-placeholder p {
            margin-bottom: 2rem;
            max-width: 500px;
        }
        
        .calendar-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            opacity: 0.2;
        }
        
        .integration-message {
            background-color: #e8f5ff;
            padding: 1rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary);
            margin-bottom: 2rem;
        }
        
        .process-section {
            margin-bottom: 4rem;
        }
        
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background-color: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .step-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .testimonial-section {
            background-color: var(--primary);
            color: white;
            padding: 5rem 0;
            margin-bottom: 4rem;
            border-radius: var(--border-radius);
        }
        
        .testimonial-title {
            color: white;
        }
        
        .testimonial-title::after {
            background-color: white;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
        }
        
        .testimonial-text::before {
            content: """;
            font-size: 4rem;
            font-family: Georgia, serif;
            position: absolute;
            top: -20px;
            left: -20px;
            color: rgba(255,255,255,0.2);
        }
        
        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .testimonial-company {
            opacity: 0.8;
        }
        
        .faq-section {
            margin-bottom: 4rem;
        }
        
        .accordion {
            list-style: none;
        }
        
        .accordion-item {
            background-color: white;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            position: relative;
            font-weight: 600;
            color: var(--primary);
        }
        
        .accordion-header::after {
            content: "+";
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .accordion-header.active::after {
            content: "-";
        }
        
        .accordion-content {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-content.show {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .btn:hover {
            background-color: #e67e00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .btn-outline:hover {
            background-color: white;
            color: var(--primary);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #0099b3;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
            padding-right: 2rem;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-col h3::after {
            content: "";
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 1.5px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* Mobile Navigation */
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                z-index: 10;
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 0.5rem 0;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .booking-info, .booking-calendar {
                flex: 1 0 100%;
            }
            
            .process-step {
                min-width: 100%;
            }
        }
  