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

body {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2.5vw, 18px);
    line-height: 1.7;
    color: #2a2c2c;
    background-color: #f1f1f1;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #171717;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: #979188;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #709276;
}

.main-header {
    background-color: rgba(237, 236, 232, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: nowrap;
    gap: 3rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    color: #709276;
    font-weight: 700;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    white-space: nowrap;
}

.language-switcher {
    margin-left: 1rem;
    border-left: 1px solid #ddd;
    padding-left: 1rem;
}

.language-switcher a {
    background-color: #f9f9f9 !important;
}

.language-switcher a:hover {
    background-color: #709276 !important;
    color: white !important;
}


.nav-menu a {
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #709276;
    font-size: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.nav-menu a:hover {
    background-color: #709276;
    color: white;
}

.nav-menu a.active {
    background-color: #709276;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #709276;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-text {
    font-size: 0.6em;
    font-weight: 400;
    font-family: 'Bitter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 100px;
    border: 2px solid #171717;
    background-color: white;
    color: #2a2c2c;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #171717;
    color: white;
}

.btn-primary {
    background-color: #709276;
    border-color: #709276;
    color: white;
}

.btn-primary:hover {
    background-color: #5a7560;
    border-color: #5a7560;
}

.section {
    padding: 80px 0;
    background-color: white;
}

.section:nth-child(even) {
    background-color: #f9f9f9;
}

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

.title-line {
    width: 80px;
    height: 2px;
    background-color: #709276;
    margin: 1rem auto;
}

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

.about-image {
    max-width: 100%;
    height: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qualifications {
    list-style: none;
    margin-top: 1.5rem;
}

.qualifications li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #709276;
    font-weight: bold;
}

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

.tcm-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tcm-card:hover {
    transform: translateY(-5px);
}

.tcm-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.tcm-card h3 {
    padding: 1rem 1.5rem 0.5rem;
}

.tcm-card p {
    padding: 0 1.5rem 1.5rem;
}

.treatment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.treatment-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.treatment-item h4 {
    color: #709276;
    margin-bottom: 1rem;
}

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

.office-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #f9f9f9;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
}


.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.office-hours {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    text-align: center;
}

.office-hours h3 {
    color: #709276;
    margin-bottom: 1rem;
}

.office-hours p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.contact-main-info,
.contact-location-info {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-main-info h3 {
    color: #709276;
    margin-bottom: 0.5rem;
}

.contact-main-info .subtitle,
.contact-location-info .subtitle {
    color: #ada5a5;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #709276;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2a2c2c;
    font-weight: bold;
    text-decoration: none;
}

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

.contact-item small {
    color: #ada5a5;
}

.accessibility-note {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

.additional-services {
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.additional-services h3 {
    margin-bottom: 1rem;
}

.services-list {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.special-link {
    color: #811616;
    font-weight: bold;
    text-decoration: underline;
}

.agb-content {
    max-width: 800px;
    margin: 0 auto;
}

.agb-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.agb-block h3 {
    color: #709276;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #709276;
    padding-bottom: 0.5rem;
}

.agb-block ul {
    list-style: none;
    padding-left: 0;
}

.agb-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.agb-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #709276;
    font-weight: bold;
}

.agb-block .subtitle {
    font-weight: bold;
    color: #2a2c2c;
    margin-bottom: 1rem;
}

.agb-block .info-text {
    font-style: italic;
    margin: 1rem 0;
    color: #555;
}

.price-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-category h4 {
    color: #709276;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price-category table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.price-category table tr {
    border-bottom: 1px solid #eee;
}

.price-category table td {
    padding: 0.75rem 0.5rem;
}

.price-category table td:first-child {
    padding-left: 0;
    word-wrap: break-word;
}

.price-category table td.price {
    text-align: right;
    font-weight: bold;
    color: #2a2c2c;
    white-space: nowrap;
    padding-right: 0;
    width: 30%;
}

.price-category .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.agb-block .external-link {
    margin-top: 1rem;
}

.agb-block .external-link a {
    color: #709276;
    font-weight: bold;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #709276;
}

.main-footer {
    background-color: #2a2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: white;
}

.footer-treatments {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin: 2rem 0 1rem;
}

.footer-treatments p {
    line-height: 1.8;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: #787878;
    font-size: 0.9rem;
}

.footer-bottom .lang-link {
    color: #ccc;
    text-decoration: none;
    margin-left: 0.5rem;
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-bottom .lang-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 1024px) {
    .main-nav {
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(237, 236, 232, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    
    .hamburger {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 0;
        border-left: none;
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .about-content,
    .office-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper {
        order: 2;
    }
    
    .contact-map {
        order: 1;
        margin-bottom: 2rem;
        min-height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .slider-container {
        padding-bottom: 75%;
    }
}