:root{--page-title-display:none;}@media(max-width:767px){.elementor-2719 .elementor-element.elementor-element-6f5e829{margin-top:0px;margin-bottom:0px;}}/* Start custom CSS for html, class: .elementor-element-c80dd62 */.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #d4a88a;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #d4a88a;
            margin: 80px 0 40px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #d4a88a;
        }
        
        /* Services Section */
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: #d4a88a;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .service-card p {
            color: #666;
            font-size: 1rem;
        }
        
        /* Hair & Beard Styling Section */
        .hair-beard-section {
            padding: 40px 0;
            background: linear-gradient(135deg, #f9e8dd 0%, #f5d8c5 100%);
            border-radius: 15px;
            margin: 60px 0;
        }
        
        .hair-beard-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .hair-beard-text {
            flex: 1;
            min-width: 300px;
        }
        
        .hair-beard-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .hair-beard-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .hair-beard-text h2 {
            font-size: 2.2rem;
            color: #d4a88a;
            margin-bottom: 20px;
        }
        
        .hair-beard-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .features-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .features-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li i {
            color: #d4a88a;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Skin Care Section */
        
        
        .skin-care-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .skin-care-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .skin-care-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .skin-care-icon {
            font-size: 2.5rem;
            color: #d4a88a;
            margin-bottom: 15px;
        }
        
        .skin-care-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #333;
        }
        
        .skin-care-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Portfolio Section */
        .portfolio-section {
            padding: 0px 0;
            margin-bottom: 80px;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 300px;
        }
        
        .portfolio-item:hover {
            transform: scale(1.03);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #f9e8dd 0%, #f5d8c5 100%);
            border-radius: 15px;
            margin: 60px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            color: #555;
        }
        
        .btn {
            display: inline-block;
            background: #d4a88a;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #d4a88a;
        }
        
        .btn:hover {
            background: transparent;
            color: #d4a88a;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .hair-beard-content {
                flex-direction: column;
            }
            
            .hair-beard-image img {
                height: 300px;
            }
        }/* End custom CSS */