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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--bg-light);
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-right {
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 80px 20px;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.technique-showcase {
    background: var(--primary-color);
    color: white;
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.technique-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.technique-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.card-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.technique-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.technique-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.services-preview {
    padding: 80px 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content, .service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonials-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.testimonials-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-large {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 18px 45px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.booking-info, .booking-form {
    flex: 1;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-point {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-point strong {
    font-size: 18px;
    color: var(--text-dark);
}

.info-point span {
    font-size: 16px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    opacity: 0.9;
}

.timeline-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 17px;
    color: var(--text-light);
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.member-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.values-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.achievements-section {
    padding: 80px 20px;
}

.achievements-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.achievements-content, .achievements-image {
    flex: 1;
}

.achievements-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.achievements-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.achievements-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content, .service-detail-image {
    flex: 1;
}

.service-label {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-tag {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: -10px;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.featured-service {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.comparison-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: var(--primary-color);
    color: white;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-row.header .comparison-cell {
    font-weight: 700;
    font-size: 18px;
    border-bottom: none;
}

.contact-main {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block, .contact-map {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    font-size: 15px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    position: relative;
}

.contact-map img {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 5px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.directions-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.directions-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.directions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.direction-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.direction-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.partners-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.partners-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.partners-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.partner-logo {
    flex: 0 0 180px;
    height: 100px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    margin: 0;
    font-size: 18px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.thanks-contact {
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.update-date {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.legal-table thead {
    background: var(--primary-color);
    color: white;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.legal-table th {
    font-weight: 700;
    font-size: 16px;
}

.legal-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-split {
        flex-direction: column;
    }

    .technique-grid {
        flex-direction: column;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .testimonials-wrap {
        flex-direction: column;
    }

    .booking-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .team-grid {
        flex-direction: column;
    }

    .values-layout {
        flex-direction: column;
    }

    .achievements-split {
        flex-direction: column;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
    }

    .contact-layout {
        flex-direction: column;
    }

    .directions-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-container {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-table {
        font-size: 14px;
    }

    .legal-table th,
    .legal-table td {
        padding: 10px;
    }
}
