
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
            background-color: #f7f6f2;
        }
        
        /* Header with Hero Image */
        .wellness-hero {
            position: relative;
            width: 100%;
            height: 110vh;
            margin-top: -40px !important;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .wellness-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

         @media (max-width: 768px) {
            .wellness-hero-image {
                object-position: 20% center;
            }
        }
        
        .wellness-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .wellness-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        
        .wellness-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            font-weight: 400;
            line-height: 1.6;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        
        /* Common Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        /* Ayurveda Experience Section */
        .ayurveda-section {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .ayurveda-text {
            flex: 1;
            padding: 60px;
        }
        
        .ayurveda-image {
            flex: 1;
            height: 500px;
            overflow: hidden;
        }
        
        .ayurveda-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .ayurveda-section:hover .ayurveda-image img {
            transform: scale(1.05);
        }
        
        .ayurveda-title {
            font-size: 1.8rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            position: relative;
            padding-bottom: 15px;
        }
        
        .ayurveda-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #c19a6b;
        }
        
        /* Treatments Section */
        .treatments-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .treatment-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .treatment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .treatment-image {
            height: 250px;
            overflow: hidden;
        }
        
        .treatment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .treatment-card:hover .treatment-image img {
            transform: scale(1.1);
        }
        
        .treatment-content {
            padding: 30px;
            text-align: center;
        }
        
        .treatment-name {
            font-size: 1.5rem;
            font-weight: 200;
            margin-bottom: 15px;
            color: #222;
        }
        
        .treatment-description {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
        }
        
        /* Benefits Section */
        .benefits-section {
            background-color: #E3D9D2;
            text-align: center;
            padding: 80px 20px;
        }
        
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 50px auto 0;
            text-align: left;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .benefit-icon {
            color: #c19a6b;
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .benefit-text {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
        } 

        .wellness-btn {
            display: inline-block !important;
            padding: 12px 30px !important;
            background-color: #c19a6b !important;
            color: white !important;
            text-decoration: none !important;
            font-size: 18px  !important;
            font-weight: 200 !important;
            border-radius: 30px !important;
            transition: all 0.3s ease !important;
            letter-spacing: 0.5px !important;
            text-transform: uppercase !important;
        }
        
        .wellness-btn:hover {
            background-color: #a67c52 !important;
            transform: translateY(-3px) !important;
            color: white !important;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .ayurveda-section {
                flex-direction: column;
            }
            
            .ayurveda-image {
                width: 100%;
                order: -1;
            }
            
            .ayurveda-text {
                padding: 40px;
            }
            
            .treatments-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .benefits-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .wellness-hero h1 {
                font-size: 2.5rem;
            }
            
            .wellness-hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .treatments-container {
                grid-template-columns: 1fr;
            }
            
            .benefits-list {
                grid-template-columns: 1fr;
            }
            
            .ayurveda-text {
                padding: 30px 20px;
            }
        }
  @media (max-width: 600px) {
    /* Hero Section Adjustments */
    .wellness-hero {
        height: 80vh;
    }
    
    .wellness-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .wellness-hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    /* Section Container Padding */
    .section-container {
        padding: 50px 15px;
    }
    
    /* Ayurveda Section Stacking */
    .ayurveda-section {
        flex-direction: column;
    }
    
    .ayurveda-image {
        order: -1;
        height: 300px;
        width: 100%;
    }
    
    .ayurveda-text {
        padding: 30px 20px;
    }
    
    .ayurveda-title {
        font-size: 1.5rem;
    }
    
    /* Treatments Single Column */
    .treatments-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-image {
        height: 200px;
    }
    
    /* Benefits Single Column */
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* General Typography Adjustments */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .ayurveda-section {
        flex-direction: column !important; /* Override inline style with !important */
    }
    
    .ayurveda-image {
        width: 100%;
        order: -1; /* Move image to top */
        height: 400px; /* Slightly reduce height */
    }
    
    .ayurveda-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .ayurveda-text {
        padding: 30px;
    }
    
    .ayurveda-image {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .ayurveda-text {
        padding: 25px 20px;
    }
    
    .ayurveda-image {
        height: 250px;
    }
    
    .ayurveda-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ayurveda-image {
        height: 200px;
    }
    
    .ayurveda-title {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}

/* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }