@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 544px;
    display: flex;
    align-items: flex-start;
    z-index: 4;
}

.header-inner {
    width: 100%;
    max-width: 1909px;
    margin: 0 auto;
    padding: 40px 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cta:hover {
    background: rgba(190, 163, 104, 1);
    color: rgba(255, 255, 255, 1);
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.header-menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-menu-text {
    display: inline-block;
}

/* Mega Menu Styles */
/* Hide mobile-only elements on desktop */
.mega-menu-mobile-logo,
.mega-menu-mobile-cta,
.mega-menu-mobile-social {
    display: none;
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu-overlay.active {
    display: block;
    opacity: 1;
    margin-left: 100px;
}

.mega-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 734px;
    background: linear-gradient(to right, transparent 0%, transparent 50px, rgba(247, 247, 247, 1) 50px, rgba(247, 247, 247, 1) 100%);
    box-shadow: -9px 0px 16.7px 0px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mega-menu-overlay.active .mega-menu-container {
    transform: translateX(0);
}

.mega-menu-left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: transparent;
}

.mega-menu-close {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 20px 40px;
    /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
    gap: 20px;
}

.mega-menu-close-text {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
}

.mega-menu-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(23, 23, 23, 1);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.mega-menu-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.mega-menu-left-column {
    width: 430px;
    padding: 40px 0px 40px 60px;
    border-right: 1px solid rgba(23, 23, 23, 0.2);
    overflow-y: auto;
}

.mega-menu-main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-main-nav li {
    margin: 0;
    padding: 0;
}

.mega-menu-nav-item {
    display: block;
    padding: 20px 40px;
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
    transition: color 0.3s ease;
}

.mega-menu-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 10px;
    display: none;
}

.mega-menu-has-dropdown.active .mega-menu-arrow {
    transform: rotate(180deg);
}

.mega-menu-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-has-dropdown.active .mega-menu-dropdown {
    display: block;
}

.mega-menu-sub-dropdown {
    position: relative;
}

.mega-menu-sub-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 18px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-toggle .mega-menu-arrow {
    display: inline-block;
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 10px;
    transform: rotate(0deg);
}

.mega-menu-sub-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-list {
    display: block;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
    transform: rotate(180deg) !important;
}

.mega-menu-dropdown-link {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 16px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

.mega-menu-dropdown-link:hover {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-list li {
    margin: 8px 0;
}

.mega-menu-sub-list li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 14px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.mega-menu-sub-list li a:hover {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-nav-item:hover {
    color: rgba(168, 135, 74, 1);
}


.mega-menu-nav-item-active {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-right-columns {
    flex: 1;
    display: flex;
    gap: 60px;
    padding: 40px 100px;
    overflow-y: auto;
}

.mega-menu-content-panel {
    display: flex;
    gap: 60px;
    width: 100%;
}

.mega-menu-content-panel[data-content="surgical"] {
    display: flex;
}

.mega-menu-content-panel[data-content="aesthetic"],
.mega-menu-content-panel[data-content="hair"] {
    display: none;
}

.mega-menu-category {
    flex: 1;
}

.mega-menu-category-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(168, 135, 74, 1);
    margin: 0 0 24px 0;
    padding: 0;
}

.mega-menu-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-category-list li {
    margin: 0 0 16px 0;
    padding: 0;
}

.mega-menu-category-list li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-category-list li a:hover {
    color: rgba(168, 135, 74, 1);
}

/* Responsive Styles */
@media (max-width: 1440px) {
    .mega-menu-container {
        width: 100%;
        max-width: 1400px;
    }
}

@media (max-width: 1024px) {
    .mega-menu-container {
        width: 100%;
        height: 100vh;
    }
    
    .mega-menu-content {
        flex-direction: column;
    }
    
    .mega-menu-left-column {
        width: 100%;
        /* border-right: none; */
        /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
        padding: 20px 0;
    }
    
    .mega-menu-nav-item {
        padding: 15px 30px;
        font-size: 20px;
    }
    
    .mega-menu-right-columns {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-category-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .mega-menu-category-list li {
        margin-bottom: 12px;
    }
    
    .mega-menu-category-list li a {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 30px 40px 0;
    }
    .header-logo {
        height: 50px;
    }
    .header-cta {
        font-size: 14px;
        padding: 10px 20px;
    }
    .header-menu {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-overlay {
        height: 200px;
    }
    .header-inner {
        padding: 20px 24px 0;
    }
    .header-logo {
        height: 44px;
    }
    .header-cta {
        padding: 10px 16px;
        font-size: 12px;
        display: none;
    }
    .header-menu {
        font-size: 14px;
        gap: 8px;
    }
    .header-menu-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Menu - Redesign to match reference */
    .mega-menu-container {
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .mega-menu-left-bar {
        display: none;
    }
    
    /* Mobile Menu Header - Logo and Close Button */
    .mega-menu-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-close-text {
        display: none;
    }
    
    .mega-menu-close-btn {
        font-size: 24px;
        width: 24px;
        height: 24px;
        color: #000;
        margin-left: auto;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Menu Logo Section - Using close-text area for logo */
    .mega-menu-close::before {
        content: '';
        display: none;
    }
    
    /* Mobile Menu Logo Section - Show on mobile */
    .mega-menu-mobile-logo {
        display: flex !important;
        align-items: center;
        gap: 12px;
        flex: 1;
    }
    
    .mega-menu-mobile-cta {
        display: block !important;
    }
    
    .mega-menu-mobile-social {
        display: flex !important;
    }
    
    .mega-menu-mobile-logo img,
    .mega-menu-mobile-logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
        display: block;
    }
    
    .mega-menu-mobile-logo-text {
        display: none !important;
    }
    
    /* Mobile Menu Content */
    .mega-menu-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    
    .mega-menu-left-column {
        width: 100%;
        padding: 0;
        border: none;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .mega-menu-main-nav {
        list-style: none;
        padding: 20px 20px;
        margin: 0;
        width: 100%;
    }
    
    .mega-menu-main-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 16px;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        width: 100%;
        position: relative;
    }
    
    .mega-menu-nav-item:hover {
        color: #000;
    }
    
    .mega-menu-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .mega-menu-arrow {
        display: inline-block !important;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease;
        position: absolute;
        right: 0px !important;
        flex-shrink: 0;
    }
    
    .mega-menu-has-dropdown.active .mega-menu-arrow {
        transform: rotate(180deg);
    }
    
    /* Submenu toggle styling - Mobile - Consistent Design */
    .mega-menu-dropdown .mega-menu-sub-dropdown {
        position: relative;
        display: block !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .mega-menu-dropdown .mega-menu-sub-toggle .mega-menu-arrow {
        display: inline-block !important;
        position: absolute !important;
        right: 0px !important;
        flex-shrink: 0;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
        transform: rotate(180deg) !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-toggle {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list {
        display: none !important;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-left: 20px;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-list {
        display: block !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Consistent styling for all submenu items - same as sub-toggle */
    .mega-menu-dropdown .mega-menu-sub-list li a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px 24px 15px 40px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li a:hover {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Nested submenu items - same consistent design */
    .mega-menu-dropdown .mega-menu-sub-list .mega-menu-sub-list li a {
        padding: 15px 24px 15px 60px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
    }
    
    .mega-menu-dropdown {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        /* background: rgba(0, 0, 0, 0.02); */
    }
    
    .mega-menu-has-dropdown.active .mega-menu-dropdown {
        display: block;
    }
    
    .mega-menu-dropdown li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Force same styling for all submenu items - Override desktop styles */
    .mega-menu-dropdown li a.mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-dropdown-link,
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mega-menu-dropdown li a.mega-menu-dropdown-link:hover,
    .mega-menu-dropdown .mega-menu-dropdown-link:hover,
    .mega-menu-dropdown-link:hover,
    .mega-menu-dropdown .mega-menu-sub-toggle:hover,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a:hover,
    .mega-menu-dropdown .menu-item a:hover,
    .mega-menu-dropdown li.menu-item a:hover,
    .mega-menu-dropdown li.menu-item-type-post_type a:hover,
    .mega-menu-dropdown li.menu-item-object-services a:hover {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Ensure HAIR TREATMENTS menu items have same structure */
    .mega-menu-dropdown li.menu-item {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .mega-menu-dropdown li.menu-item a {
        width: 100% !important;
    }
    
    .mega-menu-sub-dropdown {
        position: relative;
    }
    
    .mega-menu-right-columns {
        display: none !important;
    }
    
    /* Mobile Menu CTA Button */
    .mega-menu-mobile-cta {
        padding: 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-mobile-cta-button {
        display: block;
        width: 100%;
        padding: 16px 24px;
        background: rgb(168, 135, 74);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-family: 'Gotham', Arial, sans-serif;
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s ease;
    }
    
    .mega-menu-mobile-cta-button:hover {
        background: #29B6F6;
        color: #fff;
    }
    
    /* Mobile Menu Social Icons */
    .mega-menu-mobile-social {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-mobile-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .mega-menu-mobile-social a:hover {
        transform: scale(1.1);
    }
    
    .mega-menu-mobile-social a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Force same styling for all submenu items - 768px - Override desktop */
    .mega-menu-dropdown li a.mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-dropdown-link,
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 480px) {
    .mega-menu-close {
        padding: 16px 20px;
    }
    /* Force same styling for all submenu items - 480px override */
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
    }
    
    .mega-menu-mobile-logo img {
        height: 36px;
    }
    
    .mega-menu-mobile-logo-name {
        font-size: 16px;
    }
    
    .mega-menu-mobile-logo-tagline {
        font-size: 10px;
    }
    
    .mega-menu-close-btn {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }
    
    .mega-menu-nav-item {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    /* Force same styling for all submenu items - 480px */
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
        font-size: 14px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-transform: uppercase !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li a {
        padding: 15px 20px 15px 36px !important;
        font-size: 14px !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list .mega-menu-sub-list li a {
        padding: 15px 20px 15px 56px !important;
        font-size: 14px !important;
    }
    
    .mega-menu-mobile-cta {
        padding: 16px 20px;
    }
    
    .mega-menu-mobile-cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .mega-menu-mobile-social {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
    
    .mega-menu-mobile-social a {
        width: 36px;
        height: 36px;
    }
    
    .mega-menu-mobile-social a svg {
        width: 18px;
        height: 18px;
    }
}

/* Dermal Fillers Hero Section */
.derma-hero-section {
    position: relative;
    width: 100vw;
    height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.derma-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Dermal Fillers (1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.derma-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    text-align: center;
}

.derma-hero-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 70px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    margin: 0;
}

@media (max-width: 1440px) {
    .derma-hero-section {
        height: 80vh;
        min-height: 600px;
    }
}

@media (max-width: 1024px) {
    .derma-hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .derma-hero-title {
        font-size: 48px;
        line-height: 54px;
    }
}

@media (max-width: 768px) {
    .derma-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .derma-hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .derma-hero-content {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .derma-hero-section {
        height: 50vh;
        min-height: 350px;
    }
    
    .derma-hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .derma-hero-content {
        padding-bottom: 40px;
    }
}

/* Dermal Fillers What Section */
.derma-what-section {
    width: 100%;
    padding: 60px 20px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-what-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-what-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 30px 0;
    max-width: 1183px;
}

.derma-what-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
    max-width: 1000px;
}

.derma-what-transition {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
}

.derma-what-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1120px;
}

.derma-what-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 32px 24px;
    width: 100%;
    max-width: 530px;
}

.derma-what-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.derma-what-list li {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    position: relative;
    padding-left: 24px;
}

.derma-what-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(23, 23, 23, 1);
    font-size: 18px;
}

@media (max-width: 1024px) {
    .derma-what-section {
        padding: 60px 20px;
    }
    
    .derma-what-heading {
        font-size: 28px;
    }
    
    .derma-what-intro,
    .derma-what-transition {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-what-boxes {
        gap: 24px;
    }
    
    .derma-what-box {
        padding: 28px 20px;
    }
    
    .derma-what-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-what-section {
        padding: 40px 20px;
    }
    
    .derma-what-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .derma-what-intro {
        margin-bottom: 20px;
    }
    
    .derma-what-transition {
        margin-bottom: 30px;
    }
    
    .derma-what-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .derma-what-box {
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .derma-what-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-what-section {
        padding: 30px 15px;
    }
    
    .derma-what-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .derma-what-intro,
    .derma-what-transition {
        font-size: 14px;
        line-height: 22px;
    }
    
    .derma-what-intro {
        margin-bottom: 16px;
    }
    
    .derma-what-transition {
        margin-bottom: 24px;
    }
    
    .derma-what-boxes {
        gap: 16px;
    }
    
    .derma-what-box {
        padding: 20px 16px;
        border-radius: 20px;
    }
    
    .derma-what-list {
        gap: 10px;
    }
    
    .derma-what-list li {
        font-size: 14px;
        line-height: 22px;
        padding-left: 20px;
    }
}

/* Dermal Fillers Benefits Section */
.derma-benefits-section {
    width: 100%;
    padding: 40px 20px !important;
    background: rgba(239, 239, 239, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-benefits-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-benefits-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 30px 0;
    max-width: 691px;
}

.derma-benefits-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 50px 0;
    max-width: 1000px;
}

.derma-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 1200px;
}

.derma-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
}

.derma-benefit-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    margin: 0;
    text-align: center;
}

.derma-benefit-description {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0;
}

@media (max-width: 1024px) {
    .derma-benefits-section {
        padding: 60px 20px;
    }
    
    .derma-benefits-heading {
        font-size: 28px;
    }
    
    .derma-benefits-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }
    
    .derma-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .derma-benefit-title {
        font-size: 18px;
    }
    
    .derma-benefit-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-benefits-section {
        padding: 40px 20px;
    }
    
    .derma-benefits-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .derma-benefits-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .derma-benefit-card {
        padding: 20px 16px;
    }
    
    .derma-benefit-title {
        font-size: 18px;
    }
    
    .derma-benefit-description {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-benefits-section {
        padding: 30px 15px;
    }
    
    .derma-benefits-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .derma-benefits-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .derma-benefits-grid {
        gap: 16px;
    }
    
    .derma-benefit-card {
        padding: 18px 14px;
        gap: 10px;
    }
    
    .derma-benefit-title {
        font-size: 16px;
    }
    
    .derma-benefit-description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers Candidate Section */
.derma-candidate-section {
    width: 100%;
    padding: 60px 20px !important;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-candidate-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-candidate-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
    max-width: 778px;
}

.derma-candidate-subtitle {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
}

.derma-candidate-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1120px;
}

.derma-candidate-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 32px 24px;
    width: 100%;
    max-width: 530px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.derma-candidate-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.derma-candidate-title {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

.derma-candidate-text {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

@media (max-width: 1024px) {
    .derma-candidate-section {
        padding: 60px 20px;
    }
    
    .derma-candidate-heading {
        font-size: 28px;
    }
    
    .derma-candidate-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-candidate-boxes {
        gap: 24px;
    }
    
    .derma-candidate-box {
        padding: 28px 20px;
        gap: 18px;
    }
    
    .derma-candidate-title,
    .derma-candidate-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-candidate-section {
        padding: 40px 20px;
    }
    
    .derma-candidate-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-candidate-subtitle {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-candidate-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .derma-candidate-box {
        max-width: 100%;
        padding: 24px 20px;
        gap: 16px;
    }
    
    .derma-candidate-item {
        gap: 6px;
    }
    
    .derma-candidate-title,
    .derma-candidate-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-candidate-section {
        padding: 30px 15px;
    }
    
    .derma-candidate-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-candidate-subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .derma-candidate-boxes {
        gap: 16px;
    }
    
    .derma-candidate-box {
        padding: 20px 16px;
        border-radius: 20px;
        gap: 14px;
    }
    
    .derma-candidate-item {
        gap: 6px;
    }
    
    .derma-candidate-title,
    .derma-candidate-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers Types Section */
.derma-types-section {
    width: 100%;
    padding: 40px 20px;
    background: rgba(236, 230, 218, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-types-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-types-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
    max-width: 391px;
}

.derma-types-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 50px 0;
    max-width: 1000px;
}

.derma-types-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1320px;
}

.derma-types-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.derma-types-item-full {
    grid-column: 1 / -1;
    max-width: 640px;
    margin: 0 auto;
}

.derma-types-question {
    width: 100%;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    transition: padding 0.3s ease;
}

.derma-types-item.active .derma-types-question {
    padding-bottom: 20px;
}

.derma-types-question-text {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0;
    flex: 1;
    text-align: left;
}

.derma-types-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.derma-types-icon-open {
    display: none;
}

.derma-types-icon-close {
    display: block;
}

.derma-types-item.active .derma-types-icon-open {
    display: block;
}

.derma-types-item.active .derma-types-icon-close {
    display: none;
}

.derma-types-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.derma-types-item.active .derma-types-answer {
    max-height: 1000px;
    padding: 0 20px 24px 20px;
}

.derma-types-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.derma-types-list li {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 147%;
    letter-spacing: 0.1px;
    color: rgba(51, 51, 51, 1);
    position: relative;
    padding-left: 20px;
}

.derma-types-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(51, 51, 51, 1);
    font-size: 18px;
}

.derma-types-list li strong {
    font-weight: 500;
}

@media (max-width: 1024px) {
    .derma-types-section {
        padding: 60px 20px;
    }
    
    .derma-types-heading {
        font-size: 28px;
    }
    
    .derma-types-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }
    
    .derma-types-accordion {
        gap: 16px;
    }
    
    .derma-types-question {
        padding: 20px 18px;
    }
    
    .derma-types-question-text {
        font-size: 18px;
    }
    
    .derma-types-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-types-section {
        padding: 40px 20px;
    }
    
    .derma-types-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-types-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-types-accordion {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .derma-types-item-full {
        max-width: 100%;
    }
    
    .derma-types-question {
        padding: 18px 16px;
    }
    
    .derma-types-item.active .derma-types-question {
        padding-bottom: 16px;
    }
    
    .derma-types-question-text {
        font-size: 18px;
    }
    
    .derma-types-answer {
        padding: 0 16px;
    }
    
    .derma-types-item.active .derma-types-answer {
        padding: 0 16px 20px 16px;
    }
    
    .derma-types-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-types-section {
        padding: 30px 15px;
    }
    
    .derma-types-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-types-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .derma-types-accordion {
        gap: 12px;
    }
    
    .derma-types-question {
        padding: 16px 14px;
        gap: 12px;
    }
    
    .derma-types-item.active .derma-types-question {
        padding-bottom: 12px;
    }
    
    .derma-types-question-text {
        font-size: 16px;
    }
    
    .derma-types-icon {
        width: 20px;
        height: 20px;
    }
    
    .derma-types-answer {
        padding: 0 14px;
    }
    
    .derma-types-item.active .derma-types-answer {
        padding: 0 14px 16px 14px;
    }
    
    .derma-types-list {
        gap: 10px;
    }
    
    .derma-types-list li {
        font-size: 14px;
        line-height: 22px;
        padding-left: 18px;
    }
}

/* Dermal Fillers Treatment Areas Section */
.derma-treatment-areas-section {
    width: 100%;
    padding: 40px 20px;
    background: rgba(239, 239, 239, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-treatment-areas-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-treatment-areas-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
}

.derma-treatment-areas-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
    max-width: 1000px;
}

.derma-treatment-areas-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.derma-treatment-areas-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.derma-treatment-area-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.derma-treatment-area-title {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

.derma-treatment-area-text {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

@media (max-width: 1024px) {
    .derma-treatment-areas-section {
        padding: 60px 20px;
    }
    
    .derma-treatment-areas-heading {
        font-size: 28px;
    }
    
    .derma-treatment-areas-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-treatment-areas-columns {
        gap: 30px;
    }
    
    .derma-treatment-areas-column {
        gap: 14px;
    }
    
    .derma-treatment-area-title,
    .derma-treatment-area-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-treatment-areas-section {
        padding: 40px 20px;
    }
    
    .derma-treatment-areas-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-treatment-areas-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    
    .derma-treatment-areas-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .derma-treatment-areas-column {
        gap: 12px;
    }
    
    .derma-treatment-area-title,
    .derma-treatment-area-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-treatment-areas-section {
        padding: 30px 15px;
    }
    
    .derma-treatment-areas-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-treatment-areas-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .derma-treatment-areas-columns {
        gap: 16px;
    }
    
    .derma-treatment-areas-column {
        gap: 10px;
    }
    
    .derma-treatment-area-title,
    .derma-treatment-area-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers Process Section */
.derma-process-section {
    width: 100%;
    padding: 40px 40px;
    background: rgba(248, 248, 248, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-process-container {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.derma-process-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.derma-process-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.derma-process-content {
    display: flex;
    flex-direction: column;
    order: 2;
}

.derma-process-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
}

.derma-process-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
}

.derma-process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.derma-process-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.derma-process-step-title {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    margin: 0;
}

.derma-process-step p {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    margin: 0;
}

.derma-process-injection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.derma-process-injection-list li {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    position: relative;
    padding-left: 20px;
}

.derma-process-injection-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(23, 23, 23, 1);
    font-size: 18px;
}

@media (max-width: 1024px) {
    .derma-process-section {
        padding: 60px 20px;
    }
    
    .derma-process-container {
        gap: 40px;
    }
    
    .derma-process-heading {
        font-size: 28px;
    }
    
    .derma-process-intro {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-process-step-title {
        font-size: 16px;
    }
    
    .derma-process-step p,
    .derma-process-injection-list li {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-process-section {
        padding: 40px 20px;
    }
    
    .derma-process-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .derma-process-image-wrapper {
        order: 1;
    }
    
    .derma-process-content {
        order: 2;
    }
    
    .derma-process-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-process-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-process-steps {
        gap: 24px;
    }
    
    .derma-process-step {
        gap: 10px;
    }
    
    .derma-process-step-title {
        font-size: 16px;
    }
    
    .derma-process-step p,
    .derma-process-injection-list li {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-process-image {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .derma-process-section {
        padding: 30px 15px;
    }
    
    .derma-process-container {
        gap: 24px;
    }
    
    .derma-process-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-process-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .derma-process-steps {
        gap: 20px;
    }
    
    .derma-process-step-title {
        font-size: 14px;
    }
    
    .derma-process-step p,
    .derma-process-injection-list li {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers Recovery and Results Section */
.derma-recovery-results-section {
    width: 100%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-recovery-results-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-recovery-results-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
}

.derma-recovery-results-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
    max-width: 1103px;
}

.derma-recovery-results-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1080px;
}

.derma-recovery-results-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.derma-recovery-results-title {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

.derma-recovery-results-text {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
}

@media (max-width: 1024px) {
    .derma-recovery-results-section {
        padding: 60px 20px;
    }
    
    .derma-recovery-results-heading {
        font-size: 28px;
    }
    
    .derma-recovery-results-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-recovery-results-timeline {
        gap: 18px;
    }
    
    .derma-recovery-results-title,
    .derma-recovery-results-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-recovery-results-section {
        padding: 40px 20px;
    }
    
    .derma-recovery-results-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-recovery-results-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    
    .derma-recovery-results-timeline {
        gap: 16px;
    }
    
    .derma-recovery-results-title,
    .derma-recovery-results-text {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-recovery-results-section {
        padding: 30px 15px;
    }
    
    .derma-recovery-results-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-recovery-results-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    
    .derma-recovery-results-timeline {
        gap: 14px;
    }
    
    .derma-recovery-results-title,
    .derma-recovery-results-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers Why Choose Section */
.derma-why-choose-section {
    width: 100%;
    padding: 40px 20px !important;
    background: rgba(190, 163, 104, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-why-choose-container {
    max-width: 1475px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-why-choose-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 24px 0;
    max-width: 715px;
}

.derma-why-choose-intro {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 40px 0;
    max-width: 1000px;
}

.derma-why-choose-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.derma-why-choose-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.derma-why-choose-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.derma-why-choose-item-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(168, 135, 74, 1);
    margin: 0;
}

.derma-why-choose-item p {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    margin: 0;
}

@media (max-width: 1024px) {
    .derma-why-choose-section {
        padding: 60px 20px;
    }
    
    .derma-why-choose-heading {
        font-size: 28px;
        max-width: 100%;
    }
    
    .derma-why-choose-intro {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-why-choose-boxes {
        gap: 24px;
    }
    
    .derma-why-choose-box {
        padding: 32px 24px;
        gap: 28px;
    }
    
    .derma-why-choose-item-title {
        font-size: 18px;
    }
    
    .derma-why-choose-item p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-why-choose-section {
        padding: 40px 20px;
    }
    
    .derma-why-choose-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .derma-why-choose-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .derma-why-choose-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .derma-why-choose-box {
        padding: 28px 20px;
        gap: 24px;
    }
    
    .derma-why-choose-item {
        gap: 10px;
    }
    
    .derma-why-choose-item-title {
        font-size: 18px;
    }
    
    .derma-why-choose-item p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .derma-why-choose-section {
        padding: 30px 15px;
    }
    
    .derma-why-choose-heading {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .derma-why-choose-intro {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }
    
    .derma-why-choose-boxes {
        gap: 16px;
    }
    
    .derma-why-choose-box {
        padding: 24px 16px;
        gap: 20px;
        border-radius: 20px;
    }
    
    .derma-why-choose-item-title {
        font-size: 16px;
    }
    
    .derma-why-choose-item p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Dermal Fillers FAQ Section */
.derma-faq-section {
    width: 100%;
    padding: 80px 20px;
    background: rgba(248, 248, 248, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.derma-faq-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.derma-faq-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    margin: 0 0 60px 0;
}

.derma-faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.derma-faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.derma-faq-item:last-child {
    border-bottom: none;
}

.derma-faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    transition: padding 0.3s ease;
}

.derma-faq-item.active .derma-faq-question {
    padding-bottom: 16px;
}

.derma-faq-question-text {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 32.2px;
    letter-spacing: 0px;
    color: rgba(23, 23, 23, 1);
    margin: 0;
    flex: 1;
    text-align: left;
}

.derma-faq-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.derma-faq-icon-open {
    display: none;
}

.derma-faq-icon-close {
    display: block;
}

.derma-faq-item.active .derma-faq-icon-open {
    display: block;
}

.derma-faq-item.active .derma-faq-icon-close {
    display: none;
}

.derma-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.derma-faq-item.active .derma-faq-answer {
    max-height: 1000px;
    padding: 0 0 24px 0;
}

.derma-faq-answer p {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26.6px;
    letter-spacing: 0px;
    color: rgba(23, 23, 23, 0.7);
    margin: 0;
}

@media (max-width: 1024px) {
    .derma-faq-section {
        padding: 60px 20px;
    }
    
    .derma-faq-heading {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .derma-faq-question-text {
        font-size: 22px;
        line-height: 30px;
    }
    
    .derma-faq-answer p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .derma-faq-section {
        padding: 40px 20px;
    }
    
    .derma-faq-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .derma-faq-question {
        padding: 20px 0;
    }
    
    .derma-faq-item.active .derma-faq-question {
        padding-bottom: 12px;
    }
    
    .derma-faq-question-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .derma-faq-answer p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .derma-faq-item.active .derma-faq-answer {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .derma-faq-section {
        padding: 30px 15px;
    }
    
    .derma-faq-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .derma-faq-question {
        padding: 16px 0;
        gap: 12px;
    }
    
    .derma-faq-item.active .derma-faq-question {
        padding-bottom: 10px;
    }
    
    .derma-faq-question-text {
        font-size: 18px;
        line-height: 26px;
    }
    
    .derma-faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .derma-faq-answer p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .derma-faq-item.active .derma-faq-answer {
        padding-bottom: 16px;
    }
}

/* Map Section */
.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.map-container {
    width: 1298px;
    max-width: 100%;
    height: 402px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 30px;
}

@media (max-width: 1440px) {
    .map-container {
        width: 100%;
        max-width: 1298px;
    }
}

@media (max-width: 1024px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-container {
        height: 300px;
        border-radius: 20px;
    }
    
    .map-iframe {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 0;
    }
    
    .map-container {
        height: 250px;
        border-radius: 16px;
    }
    
    .map-iframe {
        border-radius: 16px;
    }
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 100px 0;
    background-image: url('contact-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.contact-container {
    max-width: 1440px;
    width: 100%;
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin: 0 auto;
    position: relative;
}

.contact-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
}

.contact-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    text-align: left;
}

.contact-form {
    width: 589px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    height: 64px;
    padding: 0 24px;
    border: 1px solid rgba(23, 23, 23, 1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 1);
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    outline: none;
    transition: all 0.3s ease;
}

.form-textarea {
    height: auto;
    min-height: 120px;
    padding: 18px 24px;
    resize: vertical;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(23, 23, 23, 0.8);
}

.form-submit {
    width: 100%;
    height: 46px;
    padding: 12px 30px;
    border: 1px solid rgba(23, 23, 23, 1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: rgba(190, 163, 104, 1);
    border-color: rgba(190, 163, 104, 1);
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1440px) {
    .contact-container {
        padding: 60px 60px;
        gap: 50px;
    }
    
    .contact-form {
        left: auto;
        position: relative;
        top: 0;
    }
    
    .contact-title {
        font-size: 42px;
        line-height: 54px;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 80px 20px;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .contact-content {
        max-width: 100%;
        text-align: left;
    }
    
    .contact-title {
        font-size: 38px;
        line-height: 48px;
    }
    
    .contact-form {
        width: 100%;
        max-width: 489px;
        position: relative;
        top: 0;
        left: 0;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-container {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .contact-form {
        gap: 20px;
        padding: 30px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 14px 18px;
    }
    
    .form-submit {
        font-size: 16px;
        width: 100%;
        max-width: 294px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-container {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .contact-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .contact-form {
        gap: 18px;
        padding: 25px 20px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 16px;
        height: 56px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-submit {
        font-size: 14px;
        width: 100%;
        max-width: 320px;
        height: 42px;
    }
}

/* Footer Section */
.footer-section {
    width: 100%;
    background: rgba(69, 68, 64, 1);
    padding: 70px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1444px;
    width: 100%;
    margin: 0 auto;
    padding: 0 70px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo-image {
    width: 290px;
    height: 94px;
    object-fit: contain;
}

.footer-divider {
    width: 100%;
    max-width: 1300px;
    height: 0;
    border-top: 2px solid rgba(190, 163, 104, 0.32);
    margin: 0 auto 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-treatments {
    width: 212px;
    gap: 16px;
}

.footer-location-contact {
    width: 461px;
    gap: 14px;
}

.footer-social {
    width: 215px;
    gap: 14px;
}

.footer-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 0 0;
}

.footer-contact-heading {
    line-height: 40px;
    text-align: left;
    margin-top: 50px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: rgba(190, 163, 104, 1);
}

.footer-text {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

.footer-contact .footer-text {
    line-height: 30px;
}

.footer-location {
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-links {
    list-style: none;
    padding: 20px 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: rgba(190, 163, 104, 1);
}

.footer-bottom {
    width: 100%;
    height: 65px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    margin-top: 50px;
}

.footer-copyright {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    text-align: center;
}

@media (max-width: 1440px) {
    .footer-container {
        padding: 0 60px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: auto;
        flex: 1;
        min-width: 200px;
    }
    
    .footer-bottom {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-logo-image {
        width: 240px;
        height: 78px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-logo-image {
        width: 200px;
        height: 65px;
    }
    
    .footer-divider {
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: 100%;
    }
    
    .footer-heading {
        font-size: 22px;
        line-height: 28px;
    }
    
    .footer-text,
    .footer-list li a,
    .footer-links li a {
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 0 30px;
        height: auto;
        min-height: 65px;
    }
    
    .footer-copyright {
        font-size: 16px;
        line-height: 24px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-logo-image {
        width: 180px;
        height: 58px;
    }
    
    .footer-divider {
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-heading {
        font-size: 20px;
        line-height: 26px;
    }
    
    .footer-text,
    .footer-list li a,
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-contact .footer-text {
        line-height: 24px;
    }
    
    .footer-bottom {
        padding: 0 20px;
    }
    
    .footer-copyright {
        font-size: 14px;
        line-height: 20px;
    }
}

