/* Consolidated CSS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #fff;
            color: #333; /* Default text color */
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .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;
            padding: 0; /* Ensure no default padding */
        }

        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 */
        .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 */


        /* Contact Banner */
        .contact-banner {
            background: linear-gradient(135deg, rgba(255,94,148,0.8), rgba(170,131,119,0.8)), url('images/contact-banner.jpg') center/cover no-repeat; /* Corrected image path */
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
        }

        .contact-banner h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .contact-banner p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        /* Breadcrumbs */
        .breadcrumbs {
            background-color: #f9f9f9;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .breadcrumbs-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
             display: flex; /* Use flex for alignment */
             align-items: center;
        }

        .breadcrumbs a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumbs a:hover {
            color: #ff5e94;
        }

        .breadcrumbs span {
            color: #999;
            margin: 0 10px;
        }

        .breadcrumbs .current {
            color: #ff5e94;
            font-weight: 500;
        }

        /* Main Contact Section */
        .main-contact {
            padding: 80px 20px;
            background-color: #fff;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Information */
        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ff5e94;
        }

        .contact-info p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .contact-info-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            background-color: #ffeef4;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #ff5e94;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 18px;
            color: #333;
            margin-bottom: 8px;
        }

        .contact-text p, .contact-text a {
            color: #666;
            line-height: 1.6;
            margin-bottom: 5px;
        }

        .contact-text a {
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: #ff5e94;
        }

        /* Social Media Links */
        .social-links-contact { /* Added specific class to differentiate from footer */
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #ffeef4;
            color: #ff5e94;
            border-radius: 50%;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: #ff5e94;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Contact Form */
        .contact-form-container {
            flex: 1;
            min-width: 300px;
        }

        .contact-form-container h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-form-container h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ff5e94;
        }

        .contact-form {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            padding: 40px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #555;
            margin-bottom: 8px;
        }

        .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);
        }

        /* Map Section */
        .map-section {
            padding: 0;
            background-color: #f9f9f9;
        }

        .map-container {
            height: 450px;
            width: 100%;
        }

        .map-container iframe { /* Specific selector for iframe */
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Business Hours Section */
        .business-hours {
            padding: 80px 20px;
            background-color: #fff;
        }

        .business-hours-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .business-hours h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .business-hours h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #ff5e94;
        }

        .business-hours p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hours-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 800px;
            margin: 0 auto;
            gap: 15px;
        }

        .hours-card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            padding: 20px;
            width: calc(33.33% - 15px);
            min-width: 200px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .hours-card h3 {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }

        .hours-card p {
            color: #666;
            margin-bottom: 0;
        }

        .hours-highlight {
            font-weight: 600;
            color: #ff5e94;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background-color: #f9f9f9;
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-section h2 {
            font-size: 32px;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
            display: block; /* Changed from inline-block */
            width: 100%;
             /* Removed left/transform as section-title handles centering */
        }


        .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%; /* Center the underline */
            transform: translateX(-50%); /* Center the underline */
            width: 60px;
            height: 3px;
            background-color: #ff5e94;
        }

         /* Reusing section-title style */
         .faq-section .section-title {
             margin-bottom: 40px;
             padding-top: 0; /* Remove top padding if not needed */
         }
          .faq-section .section-title h2::after {
              left: 50%;
              transform: translateX(-50%);
          }


        .accordion {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }

        .accordion-header {
            background-color: #fff;
            padding: 18px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .accordion-header:hover {
            background-color: #ffeef4;
        }

        .accordion-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }

        .accordion-icon {
            font-size: 16px;
            color: #ff5e94;
            transition: transform 0.3s ease;
        }

        .accordion-content {
            background-color: #fff;
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-content p {
            color: #666;
            line-height: 1.6;
            padding-bottom: 20px;
        }

        .accordion.active .accordion-header {
            background-color: #ffeef4;
        }

        .accordion.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion.active .accordion-content {
            max-height: 500px; /* Sufficient height */
            padding-top: 20px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #ff5e94, #ff8fb3);
            color: #fff;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: #fff;
            color: #ff5e94;
            font-weight: 600;
            font-size: 18px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #ffeff5;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px 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; /* Ensure white color for headings in footer */
        }

        .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-footer { /* Added specific class to differentiate from contact info */
            display: flex;
            gap: 15px;
        }

        .social-links-footer 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-footer 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 */
        @media (max-width: 992px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .hours-card {
                width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }

            .header-container {
                flex-direction: row;
                justify-content: space-between; /* Adjusted for better mobile header */
                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; /* Adjusted padding */
                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;
             }


            .contact-banner h1 {
                font-size: 32px;
            }

            .contact-banner p {
                font-size: 16px;
            }

            .hours-card {
                width: 100%;
            }

             .contact-container, .footer-container {
                 flex-direction: column;
                 gap: 30px;
            }

            .footer-col {
                min-width: auto;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .contact-banner h1 {
                font-size: 28px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-item {
                flex-direction: column;
            }

            .contact-icon {
                margin-bottom: 15px;
                margin-right: 0;
            }

            .contact-banner {
                height: 250px;
            }

            .submit-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
             .cta-section h2 {
                 font-size: 30px;
             }
             .cta-btn {
                 padding: 10px 25px;
                 font-size: 16px;
             }
        }

         /* Active link style */
        nav ul li a.active {
            color: #ff5e94;
        }