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

:root {
    --color-white: #ffffff;
    --color-beige-light: #e3dac9;
    --color-beige-dark: #c3b199;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body > *:not(.footer) {
    flex-shrink: 0;
}

.footer {
    margin-top: auto;
}

p, span, a, li, div {
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-hero {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-text);
    border: 2px solid var(--color-beige-dark);
}

.btn-primary:hover {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-beige-dark);
}

.btn-primary:hover {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
}

.btn-hero {
    background-color: transparent;
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 1rem;
    box-shadow: none;
    border: 2px solid var(--color-beige-dark);
}

.btn-hero:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}

.btn-hero-large {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 400;
}

.btn-large {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 15px;
}

.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    z-index: 200;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-text);
    font-weight: 400;
    font-size: 1.14rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-beige-dark);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-beige-dark);
}

.nav-menu .btn-primary {
    padding: 10px 20px;
    font-size: 1rem;
    white-space: nowrap;
}

.nav-menu .btn-primary:hover {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
}

.nav-menu li {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown.active .dropdown-arrow,
.dropdown.active .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color-text);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 25px;
    height: 21px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 16px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.hero-slogan {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.intro {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.treatments {
    padding: 80px 0;
    background-color: var(--color-beige-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text);
    font-weight: 500;
}

.treatments-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.treatments-wrapper {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.treatments-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    touch-action: pan-y;
}

.treatments-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0 0.75rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.treatments-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.treatment-card {
    background-color: var(--color-white);
    padding: 0;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.treatment-card > *:not(.treatment-card-image) {
    padding: 0 2rem;
}

.treatment-card .treatment-title {
    padding-top: 1.5rem;
}

.treatment-card .treatment-description {
    padding-bottom: 2rem;
}

.treatment-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.treatment-title a {
    color: var(--color-beige-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.treatment-title a:hover {
    color: var(--color-beige-dark);
    text-decoration: underline;
}

.treatment-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.treatments-cta {
    text-align: center;
}

.reviews {
    padding: 80px 0;
    background-image: url('../img/home/Onze Klanten.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.308);
    z-index: 1;
    pointer-events: none;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-wrapper {
    overflow: hidden;
    margin: 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y;
}

.review-card {
    min-width: 100%;
    background-color: transparent;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    text-align: center;
}

.review-stars {
    font-size: 1.4rem;
    color: #c9a84c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    margin-bottom: 2rem;
}

.review-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
}

.review-author {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 700;
}

.carousel-arrow {
    background: var(--color-white);
    border: 2px solid var(--color-beige-dark);
    color: var(--color-beige-dark);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1;
    padding: 0;
    user-select: none;
}

.carousel-arrow:hover:not(.disabled) {
    background: var(--color-beige-dark);
    color: var(--color-white);
}


.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #c5c5c5;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active,
.dot:hover {
    background-color: var(--color-beige-dark);
}

.about-teaser {
    padding: 80px 0;
    background-color: var(--color-beige-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: contain;
    background-color: var(--color-beige-light);
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    padding: 1rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--color-beige-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-item a {
    color: var(--color-beige-dark);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 2px;
    text-align: center;
}

.contact-cta h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-cta p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card h2,
.contact-cta-card h2 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.footer {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon img {
    width: 40px;
    height: 40px;
    display: block;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon:hover img {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 968px) {
    .navbar {
        padding: 2.4rem 0;
    }

    .nav-wrapper {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .logo img {
        height: 75px;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 15px;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        padding-top: 140px;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .dropdown.active .dropdown-arrow,
    .dropdown.active .dropdown-toggle .dropdown-arrow {
        transform: rotate(180deg) !important;
    }
    
    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .dropdown-menu a {
        padding-left: 2.5rem;
        font-size: 0.95rem;
        background-color: transparent !important;
        color: var(--color-text);
    }

    .dropdown-menu a:hover {
        padding-left: 3rem;
        background-color: transparent !important;
        color: var(--color-beige-dark);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3.5rem !important;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-slogan {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .intro,
    .treatments,
    .reviews,
    .about-teaser,
    .contact-section {
        padding: 50px 0;
    }

    .treatments-slide {
        flex: 0 0 100%;
        padding: 0;
    }

    .treatments-carousel .carousel-arrow {
        display: none;
    }

    .treatments-dots {
        display: flex;
    }

    .treatment-card-image {
        height: 220px;
    }

    .reviews-wrapper {
        margin: 0;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text p {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 400px;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .treatment-card,
    .contact-cta {
        padding: 1.5rem;
    }
}

   table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #ddd;
    padding: 8px;
  }

.page-header {
    background-color: var(--color-beige-light);
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin: 0;
}

.about-full-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image-large img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text-content h2 {
    color: var(--color-beige-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text-content h3 {
    color: var(--color-beige-dark);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-text-content ul li {
    color: var(--color-text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.about-text-content ul li:before {
    content: "✓";
    color: var(--color-beige-dark);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.team-section {
    padding: 20px 0 40px;
    background-image: url('../img/home/over-ons.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 20px;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-section .section-title {
    text-align: left;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 2px;
}

.team-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--color-beige-light);
    background-color: black;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.team-name {
    color: var(--color-beige-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-section {
    padding: 80px 0;
    background-color: var(--color-beige-light);
}

.values-section .section-title {
    text-align: center;
    color: var(--color-beige-dark);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-image {
        width: 200px;
        height: 200px;
    }

    .cta-buttons-center {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
} 

.cta-section {
    padding: 80px 0;
    background-color: var(--color-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-beige-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons-center {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}
  
  tr:nth-child(even){background-color: #f2f2f2;}
  
  tr:hover {background-color: #ddd;}
  
  th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #c3b199;
    color: white;
  }

.gallery-section {
    padding: 20px 0 40px;
    background-color: var(--color-white);
    margin-top: 20px;
}

.gallery-title {
    text-align: left;
    color: var(--color-text);
    margin-bottom: 2rem;
    margin-top: 3rem;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

.price-list-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.price-list-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-list-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.price-list-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.price-categories {
    display: grid;
    gap: 40px;
}

.price-category {
    background-color: var(--color-white);
    border: 2px solid var(--color-beige-dark);
    padding: 0;
    overflow: hidden;
}

.category-header {
    background-color: var(--color-beige-dark);
    color: var(--color-white);
    padding: 20px 30px;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.price-items {
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background-color: var(--color-beige-light);
}

.price-item-name {
    font-size: 1.1rem;
    color: var(--color-text);
    flex: 1;
}

.price-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    min-width: 100px;
    text-align: right;
}

.price-note {
    padding: 15px 30px;
    background-color: var(--color-beige-light);
    font-style: italic;
    color: var(--color-text-light);
    border-bottom: 1px solid #e0e0e0;
}

.price-note:last-child {
    border-bottom: none;
}

.guarantee-note {
    margin-top: 40px;
    padding: 25px 30px;
    background-color: var(--color-beige-light);
    border-left: 4px solid var(--color-beige-dark);
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .price-list-header h1 {
        font-size: 2rem;
    }
    
    .category-header {
        font-size: 1.4rem;
        padding: 15px 20px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 20px;
    }
    
    .price-item-price {
        text-align: left;
        min-width: auto;
    }
    
    .price-note,
    .guarantee-note {
        padding: 15px 20px;
    }
}

.treatment-page {
    padding: 60px 0;
    background-color: var(--color-white);
}

.treatment-header {
    text-align: center;
    margin-bottom: 50px;
}

.treatment-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.treatment-intro {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.treatment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.treatment-text-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.treatment-text-block {
    color: var(--color-text);
}

.treatment-text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.treatment-text-block h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--color-text);
}

.treatment-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--color-text);
}

.treatment-text-block ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.treatment-text-block ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.treatment-text-block ul li:before {
    content: "\u25AA";
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-size: 1.5rem;
}

.treatment-images-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.treatment-image {
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.treatment-image-link {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    word-break: break-all;
}

.treatment-cta {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
}

.treatment-cta h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.treatment-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--color-text-light);
}

.treatment-cta .btn-primary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .treatment-header h1 {
        font-size: 2rem;
    }
    
    .treatment-intro {
        font-size: 1rem;
    }
    
    .treatment-layout {
        grid-template-columns: 1fr;
    }
    
    .treatment-text-block h2 {
        font-size: 1.5rem;
    }
    
    .treatment-text-block h3 {
        font-size: 1.2rem;
    }
    
    .treatment-cta {
        padding: 30px 20px;
    }
    
    .treatment-cta h2 {
        font-size: 2rem;
    }
}