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

:root {
    --primary-color: #2d7a3e;
    --secondary-color: #1a4d2e;
    --accent-color: #4a9d5f;
    --text-dark: #1f1f1f;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.header-asymmetric {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-content-offset {
    flex: 1;
    padding-left: 3rem;
}

.hero-text-block {
    max-width: 550px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -2rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.intro-section-asymmetric {
    background: var(--bg-light);
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-block-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-block-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-block-right {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.intro-block-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--border-color);
}

.services-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-left: 6rem;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--text-dark);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-offset {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 3rem;
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
    margin-top: -2rem;
}

.card-wide {
    flex: 1 1 calc(50% - 1rem);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
    margin-top: 2rem;
}

.card-tall {
    flex: 1 1 calc(40% - 1rem);
    margin-top: -3rem;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.trust-section-offset {
    background: var(--secondary-color);
    color: white;
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    flex: 1;
    padding-right: 2rem;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-list {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2;
}

.trust-list li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.trust-image-overlay {
    flex: 0 0 45%;
    position: relative;
    margin-top: -3rem;
    background-color: var(--secondary-color);
}

.trust-image-overlay img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    background-color: var(--text-light);
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 10rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    color: var(--text-light);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.benefits-overlay {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-item:nth-child(odd) {
    margin-top: 2rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-floating {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
}

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

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid white;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 4rem 2rem 4rem 8rem;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text-offset {
    flex: 1;
    padding-right: 3rem;
}

.story-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-text-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-overlap {
    flex: 0 0 45%;
    margin-top: 3rem;
    background-color: var(--bg-light);
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.values-section-irregular {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-section-irregular h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-offset-1 {
    margin-top: -2rem;
}

.value-offset-2 {
    margin-top: 2rem;
}

.value-offset-3 {
    margin-top: 0;
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-intro-offset {
    margin-left: 4rem;
    margin-bottom: 3rem;
}

.team-intro-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro-offset p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-image-block {
    background-color: var(--bg-light);
}

.team-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.facility-section-offset {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.facility-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.facility-image-left {
    flex: 0 0 50%;
    background-color: var(--bg-light);
}

.facility-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--border-color);
}

.facility-text-right {
    flex: 1;
}

.facility-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.facility-text-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.facility-text-right ul {
    list-style: none;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 2;
}

.facility-text-right ul li:before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.approach-section-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-section-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.block-wide {
    flex: 1 1 100%;
}

.block-small {
    flex: 1 1 calc(40% - 1rem);
    margin-top: 2rem;
}

.block-medium {
    flex: 1 1 calc(60% - 1rem);
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.services-hero-offset {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 4rem 2rem 4rem 6rem;
}

.services-hero-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-position-1 {
    flex-direction: row;
}

.card-position-2 {
    flex-direction: row-reverse;
    margin-left: 4rem;
}

.card-position-3 {
    flex-direction: row;
    margin-right: 4rem;
}

.card-position-4 {
    flex-direction: row-reverse;
}

.card-position-5 {
    flex-direction: row;
    margin-left: 3rem;
}

.card-position-6 {
    flex-direction: row-reverse;
    margin-right: 3rem;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.comparison-section-offset {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.comparison-section-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.comparison-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.comparison-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta-irregular {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-hero-asymmetric {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 4rem 2rem 4rem 8rem;
}

.contact-hero-asymmetric h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-asymmetric p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.contact-content-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-container {
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.contact-address {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-email {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.email-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.opening-hours {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

.contact-map-block {
    flex: 0 0 50%;
    background-color: var(--bg-light);
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--bg-light);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: var(--bg-light);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    text-align: center;
}

.directions-section-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.directions-section-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.directions-grid {
    display: flex;
    gap: 2rem;
}

.direction-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.direction-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact-offset {
    max-width: 1200px;
    margin: 6rem auto 6rem 6rem;
    padding: 0 2rem;
}

.faq-contact-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.cta-contact {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.thanks-hero-center {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    padding: 3rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-hero-center h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.confirmation-details {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.confirmation-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.selected-service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.next-steps-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-container {
    display: flex;
    gap: 3rem;
}

.step-item {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-offset-1 {
    margin-top: 0;
}

.step-offset-2 {
    margin-top: 2rem;
}

.step-offset-3 {
    margin-top: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-info-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-block-left {
    flex: 1;
}

.info-block-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-block-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-block-right {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

.info-block-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    object-fit: cover;
    background-color: var(--bg-light);
}

.cta-thanks {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-thanks-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.updated-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-asymmetric,
    .intro-container,
    .trust-container,
    .story-container,
    .facility-container,
    .contact-container,
    .thanks-info-irregular {
        flex-direction: column;
    }

    .services-grid-irregular,
    .benefits-grid,
    .values-grid,
    .directions-grid,
    .steps-container {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-detail-image {
        flex: 0 0 auto;
        height: 300px;
    }

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

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}