        /* Service page specific styles */
        .service-hero {
            height: 50vh;
            background: linear-gradient(135deg, rgba(131, 63, 74, 0.9), rgba(234, 190, 129, 0.7)), url('assets/spa_cali_1.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .service-hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .service-content {
            padding: 80px 0;
            background: linear-gradient(135deg, #fff, #f8f9fa);
        }
        
        .content-section {
            margin-bottom: 3rem;
        }
        
        .content-section h2 {
            font-size: 2rem;
            color: #833F4A;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .benefit-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(131, 63, 74, 0.1);
            border-left: 4px solid #EABE81;
        }
        
        .benefit-item h3 {
            color: #833F4A;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .pricing-section {
            background: rgba(234, 190, 129, 0.1);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .price-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(131, 63, 74, 0.1);
        }
        
        .price-item h4 {
            color: #833F4A;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        
        .price {
            color: #EABE81;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0.5rem 0;
        }
        
        .areas-section {
            background: rgba(131, 63, 74, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .area-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            color: #833F4A;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #833F4A, #a54d5a);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            margin: 3rem 0;
        }
        
        .cta-section h2 {
            color: #EABE81;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-button-large {
            background: linear-gradient(135deg, #EABE81, #d4a574);
            color: #833F4A;
            border: none;
            padding: 18px 50px;
            font-size: 1.3rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(234, 190, 129, 0.3);
        }
        
        .cta-button-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(234, 190, 129, 0.4);
        }
        
        .breadcrumb {
            background: rgba(131, 63, 74, 0.05);
            padding: 15px 0;
            margin-top: 80px;
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        
        .breadcrumb-nav a {
            color: #833F4A;
            text-decoration: none;
        }
        
        .breadcrumb-nav a:hover {
            color: #EABE81;
        }
        
        .breadcrumb-nav span {
            color: #666;
        }
        
        @media (max-width: 768px) {
            .service-hero {
                height: 40vh;
            }
            
            .content-section h2 {
                font-size: 1.5rem;
            }
            
            .content-section p {
                font-size: 1rem;
            }
            
            .benefits-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }