        /* Additional styles specific to the services page */
        .service-detail {
            margin: 3rem 0;
        }
        
        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .service-icon-large {
            font-size: 4rem;
            color: var(--secondary);
            margin-right: 2rem;
            flex-shrink: 0;
        }
        
        .service-content {
            flex: 1;
        }
        
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .feature-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .pricing-table th {
            background-color: var(--primary);
            color: white;
        }
        
        .pricing-table tr:last-child td {
            border-bottom: none;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .booking-process {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            position: relative;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--secondary);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }
        
        .testimonials {
            margin: 4rem 0;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            font-size: 5rem;
            color: var(--light);
            position: absolute;
            top: 10px;
            right: 20px;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-top: 4rem;
            border-radius: 10px;
        }
        
        @media (max-width: 768px) {
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon-large {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .step {
                margin-bottom: 2rem;
            }
        }