        /* Additional styles for category page */
        .category-hero {
            height: 60vh;
            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;
        }
        
        .category-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);
        }
        
        .category-hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            opacity: 0.9;
            font-style: italic;
            max-width: 600px;
        }
        
        .service-areas {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa, #fff);
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .area-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(131, 63, 74, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #EABE81;
        }
        
        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(131, 63, 74, 0.15);
            border-left-color: #833F4A;
        }
        
        .area-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: #833F4A;
            margin-bottom: 0.5rem;
        }
        
        .area-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        
        .breadcrumb {
            background: rgba(131, 63, 74, 0.05);
            padding: 15px 0;
            margin-top: 55px;
        }
        
        .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) {
            .category-hero {
                height: 50vh;
            }
            
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .area-card {
                padding: 1rem;
            }
            
            .area-name {
                font-size: 1rem;
            }
            
            .area-description {
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 480px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
        }