* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.09rem;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 80px;
}

header.scrolled .header-content {
    min-height: 65px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin: 0 auto;
}

.logo img {
    height: 100px;
    display: block;
}

.phone {
    font-size: 14px;
    color: #6D5952;
}

.book {
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6D5952;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.header-nav a {
    text-decoration: none;
    color: #6D5952;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-decoration: none;
    color: #6D5952;
}

.hero-section {
    width: 100%;
    padding: 3rem 1rem;
    box-sizing: border-box;
    text-align: center;
}

.hero-container {
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.6rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-style: italic;
}

.hero-video-wrapper {
    width: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.bodysculpt-tech-section {
    padding: 40px 20px;
    background-color: #ffffff;
    font-family: 'Barlow', sans-serif;
}

.bodysculpt-tech-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.cryolipolyse-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 12px;
}

.cryo-frame {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.cryo-frame.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.cryo-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.bodysculpt-tech-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.bodysculpt-tech-content {
    flex: 1;
    min-width: 300px;
}

.bodysculpt-tech-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hair-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.hair-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hair-card:hover {
    transform: translateY(-10px);
}

.hair-card-img {
    width: 100%;
    object-fit: cover;
    height: 275px;
}

.hair-card-content {
    padding: 20px;
}

.hair-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.hair-card-content p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

.hair-card-content ul {
    padding-left: 18px;
}

.hair-card-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.haircycle-slider-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.haircycle-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.haircycle-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.haircycle-slider {
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.haircycle-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.5s ease-in-out;
}

.haircycle-slide img {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.haircycle-slide-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.haircycle-slide-caption p {
    font-size: 1rem;
    color: #333;
}

.haircycle-active {
    display: flex;
}

.haircycle-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    border-radius: 50%;
}

.haircycle-prev {
    left: 10px;
}

.haircycle-next {
    right: 10px;
}


.laser-epilation-section {
    text-align: center;
    padding: 60px 20px;
}

.laser-epilation-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.laser-epilation-subtitle {
    font-size: 26px;
    font-style: italic;
    color: #333;
    margin-bottom: 40px;
}

.laser-epilation-image-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
}

.laser-epilation-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.laser-epilation-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 15px;
}

.poil-unique {
    text-align: center;
}


.laser-test-section {
    padding: 40px 20px;
    background: #fff;
}

.laser-test-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 30px;
}

.laser-test-image {
    flex: 1 1 400px;
    min-width: 300px;
}

.laser-test-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.laser-test-text {
    flex: 1 1 500px;
}

.laser-test-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.laser-test-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.laser-steps-carousel {
    padding: 40px 20px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
}

.laser-steps-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: center;
}

.laser-steps-slider {
    flex: 1 1 500px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.laser-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.laser-step.active {
    display: block;
    opacity: 1;
}

.laser-step h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.laser-step ul {
    list-style: disc inside;
    font-size: 1rem;
    line-height: 1.6;
}

.laser-steps-arrows {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.laser-steps-arrows button {
    background: #6D5952;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 8px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.laser-steps-arrows button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.laser-steps-image {
    flex: 1 1 500px;
    min-width: 300px;
}

.laser-steps-image img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.laser-prep-slider {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    position: relative;
}

.laser-prep-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.laser-prep-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laser-prep-viewport {
    overflow: hidden;
    width: 600px;
    flex-shrink: 0;
}

.laser-prep-track {
    display: flex;
    transition: transform 0.5s ease;
}

.prep-slide {
    width: 600px;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.prep-slide img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.prep-slide h3 {
    margin: 10px 0;
    font-size: 1.2rem;
}

.prep-slide p {
    font-size: 1rem;
    line-height: 1.5;
}

.prep-arrow {
    background: rgb(109 89 82);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prep-prev {
    left: -25px;
}

.prep-next {
    right: -25px;
}

.laser-after-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.laser-after-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.laser-after-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laser-after-viewport {
    overflow: hidden;
    width: 100%;
    transition: height 0.4s ease;
    position: relative;
}

.laser-after-track {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.after-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-sizing: border-box;
    padding: 10px;
}

.after-slide.active-slide {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.after-arrow {
    background-color: #6D5952;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.after-prev-arrow {
    left: 10px;
}

.after-next-arrow {
    right: 10px;
}

.laser-faq-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.laser-faq-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.laser-question-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.laser-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.laser-question:hover {
    background: #e5e5e5;
}

.laser-question .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.laser-question-item.open .laser-question .arrow {
    transform: translateY(-50%) rotate(-135deg);
}

.laser-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.laser-question-item.open .laser-answer {
    max-height: 1000px;
    padding: 15px 20px;
}

.laser-answer p {
    margin: 0;
}

.laser-faq-image {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.laser-myths-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.laser-myths-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.laser-myths-image {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    border-radius: 8px;
}

.laser-myths-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.laser-myths-question {
    width: 100%;
    text-align: left;
    padding: 18px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    position: relative;
}

.myth-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.laser-myths-item.active .myth-arrow {
    transform: translateY(-50%) rotate(45deg);
}

.laser-myths-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 18px;
    font-size: 15px;
    color: #333;
}

.laser-myths-item.active .laser-myths-answer {
    max-height: 800px;
    padding: 15px 18px;
}

.contraindications-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.contra-title {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contra-title em {
    font-style: italic;
}

.contra-wrapper {
    position: relative;
    overflow: hidden;
}

.contra-viewport {
    overflow: hidden;
    position: relative;
    transition: height 0.4s ease;
}

.contra-track {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.contra-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    box-sizing: border-box;
    padding: 20px;
}

.contra-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
    z-index: 1;
}

.contra-slide img {
    width: 300px;
    max-width: 90%;
    margin-bottom: 10px;
    border-radius: 10px;
}

.contra-slide h3 {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contra-slide p {
    font-size: 1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.contra-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #6d5952;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.contra-prev {
    left: 10px;
}

.contra-next {
    right: 10px;
}

.contra-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.bodysculpt-tech-intro,
.bodysculpt-tech-description {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.bodysculpt-tech-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.bodysculpt-tech-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.bodysculpt-reserve-button {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    background-color: #6D5952;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bodysculpt-reserve-button:hover {
    background-color: #5a4844;
}

.chin-characteristics {
    background: #f9f9f9;
    padding: 60px 20px;
    color: #333;
}

.chin-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.chin-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.chin-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.chin-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.chin-intro {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.chin-section {
    text-align: left;
    margin-bottom: 30px;
}

.chin-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #444;
    margin-bottom: 12px;
    border-left: 4px solid #c2a278;
    padding-left: 10px;
}

.chin-section p {
    font-size: 16px;
    line-height: 1.6;
}

.chin-section ul {
    padding-left: 20px;
}

.chin-section li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.doublechin-carousel {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
    border-radius: 15px;
    height: auto;
}

.doublechin-carousel-track {
    position: relative;
    height: auto;
}

.doublechin-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    text-align: center;
    box-sizing: border-box;
}

.doublechin-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.doublechin-slide img {
    width: 50%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.doublechin-slide-text {
    background: #fff;
    padding: 20px;
}

.doublechin-slide-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.doublechin-slide-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.doublechin-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e1cec3;
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 5px;
}

.doublechin-prev {
    left: -50px;
}

.doublechin-next {
    right: -50px;
}

.cryolipolyse-section {
    background-color: #e1cec3;
    padding: 60px 20px;
    text-align: center;
}

.fa-file-pdf {
    color: white;
}

.cryolipolyse-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cryolipolyse-subtitle {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #333;
}

.cryolipolyse-timeline {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.timeline-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.timeline-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.timeline-item h4 {
    margin: 10px 0 8px;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #555;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.cryolipolyse-button-wrapper {
    margin-top: 20px;
}

.cryolipolyse-button {
    background-color: #6d5952;
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.cryolipolyse-button i {
    font-size: 1.2rem;
}

.cellulite-education-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.ht-results-timeline {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
}

.timeline-title {
    color: #6D5952;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.timeline-step {
    max-width: 200px;
}

.timeline-step img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 15px;
    color: #000;
}

.timeline-arrow {
    font-size: 32px;
    color: #6D5952;
}

.poils-pq {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}

.title-poils-pq {
    font-size: 32px;
}

.content-wrapper-flower {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.info-block {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.info-block:hover {
    transform: scale(1.02);
}

.info-block h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #6d5952;
}

.info-block p {
    display: none;
    margin-top: 10px;
    font-size: 1rem;
}

.toggle-icon {
    transition: transform 0.3s ease-in-out;
}

.expanded .toggle-icon {
    transform: rotate(180deg);
}

.expanded p {
    display: block;
}

.laser-wrapper {
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.laser-wrapper span {
    font-size: 32px;
}

.laser-description {
    padding: 36px 0px;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.accordion-item {
    border-bottom: 1px solid #6D5952;
}

.accordion-header {
    background-color: white;
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #eeeeee;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
    animation: fadeIn 0.3s ease-in-out;
    text-align: left;
}

.accordion-item.active .accordion-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hairlaser-block p,
.hairlaser-block ul,
.accordion-content p,
.accordion-content ul {
    margin: 10px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.accordion-icon {
    margin-left: 10px;
    font-size: 0.2rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.toggle-btn {
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-btn:hover {
    background-color: #f4f4f4;
}

.toggle-content {
    padding: 15px;
    display: none;
    background-color: white;
    overflow: hidden;
}

.laserqa-container {
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.laserqa-title {
    font-size: 32px;
}

.all-women {
    max-width: 700px;
    display: flex;
    border-radius: 30px;
    margin: 20px auto;
}

.laserqa-items {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.laserqa-item {
    border-bottom: 1px solid #6D5952;
    padding: 5px;
}

.laserqa-header {
    background: white;
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.laserqa-header:hover {
    background: #eeee;
}

.laserqa-icon i {
    transition: transform 0.3s;
}

.laserqa-item.active .laserqa-icon i {
    transform: rotate(45deg);
}

.laserqa-content {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left !important;
}

.laserqa-item.active .laserqa-content {
    padding: 20px;
    max-height: 1000px;
    opacity: 1;
}

.education-main-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.education-main-subheading {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    color: #333;
}

.cellulite-types-carousel {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hairlaser-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    line-height: 1.6;
    color: #333;
}

.hairlaser-block {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 40px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.hairlaser-block p {
    margin-bottom: 15px;
    font-size: 16px;
}

.hairlaser-limits,
.hairlaser-advantages {
    background: #fff;
    padding: 15px 20px;
    border-left: 5px solid #c2a278;
    border-radius: 12px;
    margin-bottom: 15px;
}

.hairlaser-limits ul,
.hairlaser-advantages ul {
    list-style: none;
    padding-left: 0;
}

.hairlaser-limits li,
.hairlaser-advantages li {
    margin-bottom: 10px;
    font-size: 15px;
}

.hairlaser-note,
.hairlaser-summary {
    font-style: italic;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
}

.carousel-content-display {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    min-height: 300px;
}

.carousel-navigation-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carousel-nav-button {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #666;
}

.carousel-nav-button:hover {
    border-color: #333;
    background: #f9f9f9;
    color: #333;
}

.visual-representation-area {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.textual-information-section {
    flex: 1;
}

.slide-title-heading {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.slide-description-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.recognition-guide-section h4 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.symptoms-characteristics-list {
    list-style: none;
}

.symptom-list-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.symptom-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
}

.slide-indicator-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active-dot {
    background: #333;
}

.indicator-dot:hover {
    background: #666;
}

.slide-content {
    display: none;
}

.slide-content img {
    width: 100%;
}

.slide-content.active-slide {
    display: block;
}

.visual-placeholder img {
    width: 24vh;
}

.cryolipolyse-tech {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #fff;
    padding: 3rem 1rem;
}

.cryolipolyse-content {
    flex: 1 1 500px;
    background-color: #e1cec3;
    padding: 2rem;
    border-radius: 10px;
}

.cryolipolyse-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cryolipolyse-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cryolipolyse-img {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.cryolipolyse-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.step-cryolipolyse {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: auto;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-header .subtitle {
    font-size: 1.1rem;
    color: #6D5952;
    border-top: 2px solid #6D5952;
    display: inline-block;
    padding-top: 0.5rem;
}

.cryolipolyse-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.step-row.reverse {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-box {
    background-color: #e1cec3;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.step-box strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.tarif-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tarif-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tarif-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.tarif-tab {
    padding: 12px 25px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tarif-tab:hover {
    background-color: #e0e0e0;
}

.tarif-tab.active {
    background-color: #6D5952;
    color: #fff;
}

.tarif-content {
    display: none;
    animation: fadeIn 0.4s;
}

.tarif-content.active {
    display: block;
}

.tarif-slider {
    overflow-x: auto;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    min-width: 600px;
}

.tarif-table thead th {
    background-color: #6d5952;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.tarif-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-size: 0.95rem;
}

.tarif-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.certification-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #e1cec3;
}

.certification-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.certification-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.certification-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.certification-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.keyfig-section {
    background-color: #f7f7f7;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.keyfig-title {
    font-size: 32px;
    color: #000000;
}

.keyfig-slider {
    position: relative;
    height: 300px;
    max-width: 900px;
    margin: 0 auto;
}

.keyfig-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.keyfig-slide.keyfig-active {
    opacity: 1;
    pointer-events: auto;
}

.keyfig-number {
    font-size: 5rem;
    font-weight: 800;
    color: #6D5952;
    margin-bottom: 20px;
}

.keyfig-slide p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.keyfig-arrows {
    position: absolute;
    bottom: 27px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.keyfig-arrows button {
    background-color: #6D5952;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.keyfig-arrows button:hover {
    background-color: #8a6f5c;
}

.appointment-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-title {
    font-size: 32px;
    margin-bottom: 50px;
}

.appointment-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.appointment-step {
    flex: 1 1 200px;
    max-width: 220px;
}

.appointment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.appointment-step p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-traitement {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 3rem 1rem;
    align-items: center;
}

.post-img {
    flex: 1 1 450px;
}

.post-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.post-text {
    flex: 1 1 500px;
    background-color: #e1cec3;
    padding: 2rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.post-text h2 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.post-text ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

.post-text ul li {
    margin-bottom: 0.5rem;
}

.bodysculpt-facts-section {
    padding: 60px 20px;
    background-color: #e1cec3;
    font-family: 'Barlow', sans-serif;
    text-align: center;
}

.bodysculpt-facts-content {
    max-width: 800px;
    margin: auto;
    padding: 50px;
}

.bodysculpt-facts-icon {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.bodysculpt-facts-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.bodysculpt-facts-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.bodysculpt-results-section {
    text-align: center;
    padding: 50px 20px;
    font-family: 'Barlow', sans-serif;
}

.bodysculpt-results-title {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.bodysculpt-zone-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.zone-btn {
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
}

.zone-btn span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: border 0.3s;
    align-content: center;
}

.zone-btn.active span {
    border-color: #6D5952;
}

.zone-btn span {
    display: block;
    margin-top: 8px;
    font-weight: bold;
    font-size: 0.95rem;
}

.zone-btn:hover {
    transform: scale(1.05);
}

.bodysculpt-before-after {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.bodysculpt-before-after .before,
.bodysculpt-before-after .after {
    max-width: 300px;
}

.bodysculpt-before-after img {
    width: 100%;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.bodysculpt-zones-section {
    padding: 60px 20px;
    font-family: 'Barlow', sans-serif;
}

.bodysculpt-zones-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.bodysculpt-body-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.body-zones-image {
    position: relative;
    max-width: 400px;
    flex: 1;
}

.body-image {
    width: 100%;
    border-radius: 10px;
    background-color: #e1cec3;
}

.treatment-point {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 2;
}

.treatment-point .dot {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #b59884;
    border-radius: 50%;
    animation: blink 1.8s infinite;
}

.treatment-point span {
    margin-left: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6d5952;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes blink {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.bodysculpt-zones-text {
    flex: 1;
    min-width: 250px;
    max-width: 425px;
    align-self: center;
}

.bodysculpt-zones-word-isolated {
    font-size: 1.5rem;
    color: #b59884;
    font-style: italic;
}

.bodysculpt-zones-text p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.bodysculpt-zones-text ul {
    list-style: disc;
    padding-left: 20px;
    color: #6D5952;
    font-size: 1rem;
}

.bodysculpt-zones-text li {
    margin: 8px;
}

.point-bras {
    top: 13%;
    left: 33%;
    flex-direction: column;
}

.point-abdomen {
    top: 36%;
    left: 55%;
}

.point-fessiers {
    top: 43%;
    left: 32%;
    flex-direction: column;
}

.point-cuisses {
    top: 53%;
    left: 38%;
    flex-direction: column;
}

.point-mollets {
    top: 70%;
    left: 40%;
    flex-direction: column;
}

.point-hanche {
    top: 45%;
    left: 54%;
    flex-direction: column;
}

.point-dos {
    top: 26%;
    left: 36%;
    flex-direction: column;
}

.point-flancs {
    top: 36%;
    left: 37%;
    flex-direction: column;
}

.bodysculpt-pricing-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Barlow', sans-serif;
}

.bodysculpt-pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.pricing-column {
    background-color: #e1cec3;
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6D5952;
}

.subtitle {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.pricing-list {
    list-style: none;
    padding: 0;
}

.pricing-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s;
    border-bottom: 0.1px solid #cab5ad;
}

.pricing-list li:hover {
    color: #6D5952;
}

.old {
    text-decoration: line-through;
    color: #ffffff;
    margin-right: 10px;
}

.bodysculpt-tabs-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 14px 24px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    border-color: #6D5952;
    color: #6D5952;
}

.tab-wrapper {
    position: relative;
    min-height: 200px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.tab-content.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
}

.highlight {
    font-size: 1.1rem;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
}

.contra-list {
    list-style: disc;
    padding-left: 20px;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.laser-after-viewport {
    transition: height 0.4s ease;
}

.contra-list li {
    margin: 16px;
}

.bodysculpt-video-section {
    padding: 60px 20px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.bodysculpt-faq-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 15px 0;
    position: relative;
    color: #6d5952;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    margin: 0;
}

.footer-contact {
    position: relative;
    background-color: #f3e6d5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    color: #000;
}

.footer-contact-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    color: #50403a;
}

.footer-contact-socials {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
    color: #50403a;
}

.footer-contact-socials li {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
    transform: scale(1.2);
}

.footer-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    background-image: url('./img/footer-img.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-contact-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }



    .hamburger {
        display: block;
        padding: 5px;
        font-size: 24px;
        order: 1;
    }

    .phone.desktop-only {
        display: none;
    }

    .hero-section {
        padding: 0;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .bodysculpt-tech-section {
        padding: 20px 20px;
    }

    .bodysculpt-tech-container {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .bodysculpt-tech-image {
        min-width: unset;
        max-width: 100%;
    }

    .bodysculpt-tech-content {
        min-width: unset;
    }

    .bodysculpt-tech-title {
        font-size: 1.8rem;
    }

    .bodysculpt-tech-intro {
        font-size: 0.95rem;
    }

    .bodysculpt-reserve-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .bodysculpt-facts-section {
        padding: 40px 20px;
    }

    .bodysculpt-facts-icon {
        font-size: 3rem;
    }

    .bodysculpt-facts-title {
        font-size: 1.5rem;
    }

    .bodysculpt-facts-text {
        font-size: 0.95rem;
    }

    .laser-epilation-section {
        padding: 40px 20px;
    }

    .laser-epilation-title {
        font-size: 26px;
    }

    .laser-epilation-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .laser-epilation-caption {
        font-size: 13px;
        padding: 10px;
    }

    .poil-unique {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .poil-unique .title-poils-pq {
        font-size: 24px;
    }

    .hair-cards {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .hair-card {
        max-width: 100%;
    }

    .hair-card-img {
        height: 200px;
    }

    .hair-card-content h3 {
        font-size: 18px;
    }

    .hair-card-content p,
    .hair-card-content ul li {
        font-size: 14px;
    }


    .doublechin-carousel {
        margin: 40px auto;
        padding: 0 15px;
    }

    .doublechin-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        padding: 0;
        line-height: 1;
    }

    .doublechin-prev {
        left: 0;
    }

    .doublechin-next {
        right: 0;
    }

    .doublechin-slide img {
        width: 80%;
        max-height: 180px;
    }

    .doublechin-slide-text {
        padding: 15px;
    }

    .doublechin-slide-text h3 {
        font-size: 18px;
    }

    .doublechin-slide-text p {
        font-size: 14px;
    }

    .content-wrapper-flower {
        padding: 0 15px;
    }

    .info-block {
        padding: 15px;
        margin-bottom: 15px;
    }

    .info-block h2 {
        font-size: 1rem;
    }

    .info-block p {
        font-size: 0.9rem;
    }

    .laser-wrapper {
        padding: 15px;
    }

    .laser-wrapper span {
        font-size: 24px;
    }

    .laser-description {
        padding: 15px 0;
        font-size: 0.95rem;
    }

    .accordion-container {
        padding: 0;
    }

    .accordion-header {
        font-size: 15px;
        padding: 12px 15px;
    }

    .accordion-content {
        padding: 12px 15px;
        font-size: 14px;
    }

    .laserqa-container {
        margin: 20px 15px;
    }

    .laserqa-title {
        font-size: 26px;
    }

    .all-women {
        width: 90%;
        margin: 15px auto;
    }

    .laserqa-header {
        padding: 15px;
        font-size: 15px;
    }

    .laserqa-content {
        padding: 0 15px;
        font-size: 14px;
    }

    .laser-steps-carousel {
        padding: 30px 15px;
    }

    .footer-contact-background::after {
        background-color: rgb(0 0 0 / 0%);
    }


    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-background {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 2rem;
        background-position: center top;
    }


    .laser-steps-slider {
        min-width: unset;
        width: 100%;
    }

    .laser-step h2 {
        font-size: 1.4rem;
    }

    .laser-step ul {
        font-size: 0.95rem;
    }

    .laser-steps-image {
        min-width: unset;
        width: 100%;
    }

    .laser-prep-slider {
        margin: 30px auto;
        padding: 0 15px;
        width: auto;
        box-sizing: border-box;
    }

    .laser-prep-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .laser-prep-viewport {
        width: 100%;
    }

    .prep-slide {
        width: 100%;
        padding: 10px;
    }

    .prep-slide h3 {
        font-size: 1rem;
    }

    .prep-slide p {
        font-size: 0.9rem;
    }

    .prep-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .prep-prev {
        left: -5px;
    }

    .prep-next {
        right: -5px;
    }

    .laser-after-slider {
        padding: 0 15px;
    }

    .laser-after-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .after-slide img {
        width: 90%;
        margin: 0 auto;
    }

    .after-slide h3 {
        font-size: 1rem;
    }

    .after-slide p {
        font-size: 0.9rem;
    }

    .after-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .laser-faq-container {
        padding: 0 15px;
        margin: 30px auto;
    }

    .laser-faq-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .laser-faq-image {
        margin-bottom: 20px;
    }

    .laser-question {
        font-size: 15px;
        padding: 12px 15px;
    }

    .laser-answer {
        font-size: 14px;
        padding: 0px 15px;
    }

    .laser-myths-container {
        padding: 30px 15px;
    }

    .laser-myths-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .laser-myths-image {
        margin-bottom: 20px;
    }

    .laser-myths-question {
        font-size: 15px;
        padding: 15px;
    }

    .laser-myths-answer {
        font-size: 14px;
        /* padding: 12px 15px; */
    }

    .contraindications-carousel {
        margin: 40px auto;
        padding: 0 15px;
    }

    .contra-title {
        font-size: 26px;
    }

    .contra-slide img {
        width: 80%;
        max-width: 250px;
    }

    .contra-slide h3 {
        font-size: 1rem;
    }

    .contra-slide p {
        font-size: 0.9rem;
    }

    .contra-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .contra-prev {
        left: 0;
    }

    .contra-next {
        right: 0;
    }

    .tarif-section {
        padding: 40px 15px;
    }

    .tarif-title {
        font-size: 28px;
    }

    .tarif-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .tarif-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .tarif-table {
        min-width: 100%;
    }

    .tarif-table thead th,
    .tarif-table tbody td {
        padding: 10px;
        font-size: 0.85rem;
    }

    .certification-section {
        padding: 40px 15px;
    }

    .certification-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .certification-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certification-card {
        padding: 20px;
    }

    .certification-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .certification-card h3 {
        font-size: 1rem;
    }

    .certification-card p {
        font-size: 0.9rem;
    }

    .keyfig-section {
        padding: 40px 15px;
        height: auto;
    }

    .keyfig-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .keyfig-slider {
        height: auto;
        min-height: 250px;
    }

    .keyfig-slide {
        padding: 10px;
    }

    .keyfig-number {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }

    .keyfig-slide p {
        font-size: 0.9rem;
    }

    .keyfig-arrows {
        position: relative;
        margin-top: 160px;
        justify-content: center;
    }

    .keyfig-arrows button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .appointment-section {
        padding: 40px 15px;
    }

    .appointment-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .appointment-steps {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .appointment-step {
        max-width: 100%;
        flex: none;
    }

    .appointment-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .appointment-step p {
        font-size: 1rem;
    }

    .hair-card {
        overflow: visible;
    }

    .laser-wrapper img {
        width: 100%;
    }


    .haircycle-title {
        font-size: 1.5rem;
    }

    .haircycle-subtitle {
        font-size: 1rem;
    }

    .haircycle-slide-caption h4 {
        font-size: 1.2rem;
    }

    .haircycle-slide-caption p {
        font-size: 0.95rem;
    }
}