   /* Combined Styles (Header, Page Banner, Salon Info, Services Grid, Tabs, Offers Slider, Footer, Responsive) */
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background: #fff;
       overflow-x: hidden; /* Prevent horizontal scroll */
       color: #333; /* Default text color */
       line-height: 1.6;
    }

    /* Header Styles (Copied from home.html corrected version) */
    .studio-name {
        background-color: #aa8377;
        color: white;
        text-align: center;
        padding: 15px 0;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 24px;
        letter-spacing: 1px;
    }

    header {
        background-color: #fff;
        padding: 10px 20px;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        height: 80px;
        width: auto;
        margin-bottom: 10px;
    }

    nav {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    nav ul {
        display: flex;
        list-style: none;
        justify-content: center;
    }

    nav ul li {
        margin: 0 15px;
    }

    nav ul li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        padding: 5px 10px;
    }

    nav ul li a:hover {
        color: #ff5e94;
    }

    .mobile-menu {
        display: none;
        cursor: pointer;
        font-size: 24px;
        position: absolute;
        right: 20px;
        top: 20px;
    }

     /* Dropdown Styles (Copied from home.html corrected version) */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        list-style: none;
        padding: 10px 0;
        min-width: 160px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        text-decoration: none;
        color: #333;
    }

    .dropdown-menu li a:hover {
        background-color: #f0f0f0;
    }

    /* Desktop Hover */
    @media (min-width: 768px) {
        .dropdown:hover .dropdown-menu {
            display: block;
        }
    }
    /* Mobile Click Handled by JS */

    /* Page Banner */
    /* Page Banner */
.page-banner {
        background: linear-gradient(135deg, rgba(255,94,148,0.3), rgba(170,131,119,0.3)),
        url('../images/home/salon-hero.webp') center/cover no-repeat;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
    }  

    .page-banner h1 {
      font-size: 42px; /* Adjusted font size for consistency */
      font-weight: 700; /* Adjusted font weight */
      text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
    }

    /* Breadcrumb (Copied from makeup.html) */
    .breadcrumb {
        background-color: #f9f9f9;
        padding: 15px 0;
    }

    .breadcrumb-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .breadcrumb ul {
        display: flex;
        list-style: none;
         padding: 0;
    }

    .breadcrumb ul li {
        margin-right: 10px;
        color: #666;
    }

    .breadcrumb ul li a {
        color: #333;
        text-decoration: none;
    }

    .breadcrumb ul li a:hover {
        color: #ff5e94;
    }

    .breadcrumb ul li:after {
        content: '/';
        margin-left: 10px;
    }

    .breadcrumb ul li:last-child:after {
        display: none;
    }


    .salon-info {
      padding: 80px 20px;
      background-color: #fff;
    }

    .salon-info-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px; /* Adjusted gap */
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .salon-info-img {
      flex: 1;
      min-width: 300px;
      text-align: center; /* Center image if it doesn't fill container */
    }

    .salon-info-img img {
      max-width: 100%; /* Ensure responsiveness */
      height: 550px; /* Maintain aspect ratio */
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .salon-info-text {
      flex: 1;
      min-width: 300px;
    }

    .salon-info-text h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #333;
    }

    .salon-info-text p {
      font-size: 16px;
      color: #666;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    /* Shared Section Title Style (Copied from home.html corrected version) */
    .section-title {
        text-align: center;
        margin-bottom: 50px;
        padding-top: 50px;
    }

    .section-title h2 {
        font-size: 36px;
        color: #333;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background-color: #ff5e94;
    }


    .services-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }


    .salon-services-grid {
      display: flex; /* Changed to flex for consistency with makeup.html */
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
	
	

    .salon-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s;
      width: calc(33.33% - 20px); /* Adjusted for 3 items per row */
      min-width: 300px;
       display: flex; /* Use flexbox for content alignment */
      flex-direction: column;
    }

    .salon-card:hover {
      transform: translateY(-8px);
    }

    .salon-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .salon-card-content {
      padding: 20px;
       flex-grow: 1; /* Allow content to fill space */
       display: flex; /* Use flex for inner alignment */
       flex-direction: column;
       justify-content: space-between; /* Push button to bottom */
    }

    .salon-card-content h3 {
      margin: 0 0 10px;
      font-size: 22px;
      color: #333;
    }

    .salon-card-content p {
      color: #666;
      line-height: 1.6;
      font-size: 15px;
       flex-grow: 1; /* Allow paragraph to take space */
    }

     /* Button Style (Copied from home.html corrected version) */
    .btn {
        margin-top: 15px;
        display: inline-block;
        padding: 12px 30px; /* Adjusted padding for consistency */
        background-color: #ff5e94;
        color: #fff;
        text-decoration: none;
        border-radius: 30px; /* Adjusted border-radius for consistency */
        font-weight: 500;
        transition: all 0.3s ease;
         box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .btn:hover {
        background-color: #ff3c7f;
        transform: translateY(-3px); /* Adjusted transform for consistency */
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }


    .services-tabs {
      display: flex;
      max-width: 1200px;
      margin: 50px auto;
       box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Added shadow to the whole tab container */
       border-radius: 10px;
       overflow: hidden; /* Ensure shadow and border-radius work */
    }

    .tab-links {
      flex: 0 0 250px;
      display: flex;
      flex-direction: column;
      background: #f7f7f7;
      border-right: 2px solid #eee;
    }

    .tab-button {
      padding: 15px 20px;
      border: none;
      background: #fff;
      color: #333;
      font-size: 16px;
      text-align: left;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: background 0.3s, color 0.3s; /* Added color transition */
    }

    .tab-button:hover {
      background: #ffe4f0;
      color: #ff5e94; /* Highlight color on hover */
    }

    .tab-button.active {
      background: #ff5e94; /* Adjusted to main theme color */
      color: white;
      font-weight: bold;
    }

    .tab-content-area {
      flex: 1;
      padding: 30px;
      background: #fff;
       /* Removed individual box-shadow as it's on parent */
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    .tab-content h3 {
      color: #333; /* Adjusted color */
      font-size: 24px; /* Adjusted font size */
      margin-bottom: 20px; /* Adjusted margin */
       font-weight: bold;
    }


    .service-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        font-family: 'Poppins', sans-serif;
         /* Removed complex shadow, let parent handle it */
    }

    .service-table thead th {
        background-color: #ff5e94; /* Adjusted to main theme color */
        color: #fff; /* White text on header */
        text-align: left; /* Left align headers */
        padding: 15px;
        font-weight: 700;
    }

    .service-table tbody td {
        background-color: #fff; /* White background for rows */
        padding: 15px;
        text-align: left; /* Left align cells */
        border-bottom: 1px solid #eee; /* Lighter border */
        font-size: 16px;
        color: #666; /* Darker text color */
    }

     /* Alternating row background removed for cleaner look */
    /* .service-table tbody tr:nth-child(even) td {
        background-color: #ffffff;
    } */

     /* Style last row border */
     .service-table tbody tr:last-child td {
         border-bottom: none;
     }


    /* Offers Slider Styles (Copied from home.html corrected version) */
    .offers {
        padding: 80px 20px;
        background-color: #f9f9f9; /* Adjusted background */
    }

    .offers-slider-container {
        position: relative;
        max-width: 1240px;
        margin: 0 auto;
        overflow: hidden;
    }

    .offers-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 20px; /* Match home.html gap */
        padding: 0 10px; /* Add padding to show parts of adjacent slides */
    }

    .offers-slide {
        min-width: 300px; /* Adjusted min width for consistency */
        height: 600px; /* Adjusted height for consistency */
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .offer-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px; /* Adjusted size */
        height: 40px; /* Adjusted size */
        background-color: rgba(255, 94, 148, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 20px; /* Adjusted font size */
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Added slight shadow */
    }

    .slider-btn:hover {
        background-color: rgba(255, 94, 148, 1);
    }

    .prev-btn {
        left: 10px; /* Adjusted position */
    }

    .next-btn {
        right: 10px; /* Adjusted position */
    }

    /* Contact Section (Copied from home.html corrected version) */
    .contact {
        padding: 80px 20px;
        background-color: #fff;
    }

    .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-info {
        flex: 1;
        min-width: 300px;
    }

    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .contact-icon {
        font-size: 20px;
        color: #ff5e94;
        margin-right: 15px;
         width: 25px;
         min-width: 25px; 
        text-align: center;
        display: flex; /* Added flex display */
        align-items: center; /* Center vertically */
        justify-content: center; /* Center horizontally */
        flex-shrink: 0; /* Prevent icon from shrinking */
        }

        .contact-text {
         flex: 1; /* ADD THIS NEW RULE */
         }

    .contact-text h4 {
        font-size: 18px;
        color: #333;
        margin-bottom: 5px;
    }

    .contact-text p {
        color: #666;
        line-height: 1.6;
         margin: 0;
    }

    .contact-form {
        flex: 1;
        min-width: 300px;
    }

     /* Shared Form Styles (Copied from home.html corrected version) */
    .form-group {
        margin-bottom: 20px;
    }

    .form-control {
        width: 100%;
        padding: 12px 15px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        outline: none;
        border-color: #ff5e94;
        box-shadow: 0 0 5px rgba(255, 94, 148, 0.3);
    }

    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }

    .submit-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #ff5e94;
        color: #fff;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .submit-btn:hover {
        background-color: #ff3c7f;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Footer Styles (Copied from home.html corrected version) */
    footer {
        background-color: #222;
        color: #fff;
        padding: 50px 20px 20px;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 30px;
    }

    .footer-col {
        flex: 1;
        min-width: 250px;
    }

    .footer-col h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        color: #fff;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #ff5e94;
    }

    .footer-col p {
        color: #bbb;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        color: #bbb;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-col ul li a:hover {
        color: #ff5e94;
        padding-left: 5px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #333;
        color: #fff;
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .social-links a:hover {
        background-color: #ff5e94;
        transform: translateY(-5px);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #444;
    }

    .footer-bottom p {
        color: #bbb;
        font-size: 14px;
    }

     /* Specific Form Styles for Footer Newsletter (Copied from home.html corrected version) */
    .footer-col .form-group {
        margin-bottom: 15px;
    }

    .footer-col .form-control {
        padding: 10px 12px;
        font-size: 15px;
        border: 1px solid #555;
        background-color: #333;
        color: #fff;
    }
     .footer-col .form-control::placeholder {
        color: #888;
    }

    .footer-col .form-control:focus {
        border-color: #ff5e94;
        box-shadow: 0 0 5px rgba(255, 94, 148, 0.3);
    }

    .footer-col .submit-btn {
        padding: 10px 25px;
        border-radius: 25px;
        font-size: 15px;
    }

    .footer-col .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }


    /* Responsive Styles (Copied from home.html corrected version and adjusted) */
    @media (max-width: 992px) {
        .salon-card {
             width: calc(50% - 15px); /* 2 items per row */
        }

         .services-tabs {
             flex-direction: column; /* Stack tabs on smaller screens */
             box-shadow: none; /* Remove shadow when stacked */
         }

         .tab-links {
             flex: none; /* Remove flex basis */
             flex-direction: row; /* Arrange buttons horizontally */
             border-right: none;
             border-bottom: 2px solid #eee; /* Add bottom border */
             justify-content: center; /* Center tab buttons */
             overflow-x: auto; /* Add scroll if tabs exceed width */
             white-space: nowrap; /* Prevent wrapping */
         }

         .tab-button {
             border-bottom: none; /* Remove individual button border */
             border-right: 1px solid #eee; /* Add border between buttons */
         }
          .tab-button:last-child {
              border-right: none;
          }

         .tab-content-area {
             padding: 20px; /* Adjusted padding */
         }

         .service-table thead th,
         .service-table tbody td {
             text-align: center; /* Center align table content on smaller screens */
         }
    }

    @media (max-width: 768px) {
        .mobile-menu {
            display: block;
        }

         .header-container {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
             position: relative;
        }

        .logo-container {
            margin-bottom: 0;
        }

        .logo {
            height: 60px;
        }

        nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 250px;
            height: 100vh;
            background-color: #fff;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            z-index: 200;
            justify-content: flex-start;
            padding-top: 60px;
        }

        nav.active {
            right: 0;
        }

        nav ul {
            flex-direction: column;
            padding: 20px 0;
            width: 100%;
        }

        nav ul li {
            margin: 0;
        }

        nav ul li a {
            display: block;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
        }
         /* Mobile Dropdown Styles */
         .dropdown-menu {
            position: static;
            display: none;
            background: #f9f9f9;
            box-shadow: none;
            padding: 0;
            min-width: auto;
         }

         .dropdown-menu li a {
            padding-left: 35px;
            border-bottom: none;
         }

         .dropdown.active .dropdown-menu {
            display: block;
         }


        .salon-info-container {
            flex-direction: column;
            gap: 30px;
        }
         .salon-info-img, .salon-info-text {
             min-width: auto;
             width: 100%;
         }
         .salon-info-img img {
             max-width: 500px; /* Limit size but keep centered */
             margin: 0 auto;
             display: block;
         }


        .salon-card {
             width: 100%; /* 1 item per row */
        }

         .contact-container, .footer-container {
             flex-direction: column;
             gap: 30px;
         }

         .footer-col {
             min-width: auto;
             width: 100%;
         }

         .page-banner h1 {
             font-size: 36px;
         }

         .tab-links {
              justify-content: flex-start; /* Align tabs to the left if scrolling */
         }
    }

    @media (max-width: 576px) {
         .page-banner h1 {
             font-size: 32px;
         }

         .btn {
             padding: 10px 20px;
             font-size: 14px;
         }

         .section-title h2 {
             font-size: 28px;
         }

         .tab-button {
             font-size: 14px; /* Smaller font for tab buttons */
             padding: 12px 15px;
         }
         .service-table thead th,
         .service-table tbody td {
             font-size: 14px; /* Smaller font for table text */
             padding: 10px;
         }
         .offers-slide {
             min-width: 280px; /* Adjusted for smaller screens */
             height: 350px;
         }
    }

     /* Active link style (Copied from home.html corrected version) */
    nav ul li a.active {
        color: #ff5e94;
    }