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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

.hero-asymmetric {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 80px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.hero-text-block h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-text-block p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -50px;
    top: 120px;
    width: 700px;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    background: #ddd;
    transform: rotate(-3deg);
}

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

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.intro-offset {
    padding: 120px 30px;
    background: white;
}

.intro-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-visual {
    width: 45%;
    position: relative;
    transform: translateY(-40px);
}

.intro-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #ddd;
}

.intro-text-asymmetric {
    width: 55%;
    padding-left: 40px;
}

.intro-text-asymmetric h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.services-irregular {
    padding: 100px 30px 140px;
    background: var(--bg-light);
}

.services-header-offset {
    max-width: 650px;
    margin-left: 120px;
    margin-bottom: 80px;
}

.services-header-offset h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    width: calc(50% - 20px);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-offset-1 {
    margin-left: 60px;
}

.card-offset-2 {
    margin-right: 80px;
    margin-top: 40px;
}

.card-offset-3 {
    margin-left: 100px;
}

.card-offset-4 {
    margin-right: 60px;
    margin-top: -30px;
}

.card-offset-5 {
    margin-left: 40px;
    width: 60%;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #ddd;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 35px 30px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.form-section-overlap {
    padding: 140px 30px;
    background: white;
    position: relative;
}

.form-container-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-decoration {
    width: 45%;
    position: relative;
    margin-top: -80px;
}

.form-decoration img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    background: #ddd;
}

.form-wrapper {
    width: 55%;
    background: var(--bg-light);
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-wrapper > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

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

.btn-submit {
    padding: 16px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.benefits-stacked {
    padding: 120px 30px;
    background: var(--primary-color);
    color: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-header h2 {
    font-size: 48px;
    font-weight: 800;
}

.benefits-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.benefit-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-block p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.block-1 {
    width: 100%;
    margin-left: 80px;
}

.block-2 {
    width: calc(60% - 25px);
    margin-top: -30px;
}

.block-3 {
    width: calc(40% - 25px);
    margin-left: auto;
    margin-top: 20px;
}

.main-footer {
    background: #1a252f;
    color: white;
    padding: 60px 30px 30px;
}

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

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
}

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

.page-hero-offset {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.hero-text-left {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 80px;
}

.hero-text-left h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    width: 50%;
}

.hero-text-left p {
    font-size: 20px;
    color: var(--text-light);
    width: 50%;
    padding-top: 20px;
}

.hero-image-right {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 450px;
    margin-top: -100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    background: #ddd;
}

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

.about-content-irregular {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.content-block-1 {
    width: 55%;
    padding-right: 40px;
}

.content-block-1 h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-block-1 p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-visual-overlap {
    width: 40%;
    position: relative;
    margin-top: -60px;
}

.content-visual-overlap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #ddd;
}

.content-block-2 {
    width: 100%;
    margin-top: 40px;
    margin-left: 100px;
    max-width: 800px;
}

.content-block-2 h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.content-block-2 p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-asymmetric {
    padding: 100px 30px;
    background: var(--bg-light);
}

.values-asymmetric h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 80px;
}

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

.value-card {
    background: white;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.value-offset-1 {
    width: calc(45% - 20px);
    margin-left: 60px;
}

.value-offset-2 {
    width: calc(55% - 20px);
    margin-top: 40px;
}

.value-offset-3 {
    width: 60%;
    margin-left: auto;
    margin-right: 80px;
}

.team-irregular {
    padding: 100px 30px;
    background: white;
}

.team-intro {
    max-width: 1200px;
    margin: 0 auto 50px;
    margin-left: 120px;
}

.team-intro h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-intro p {
    font-size: 19px;
    color: var(--text-light);
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 100px;
}

.team-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-offset {
    padding: 100px 30px;
    background: var(--accent-color);
    color: white;
}

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

.cta-content h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.services-hero {
    padding: 100px 30px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 30px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-layout-1 {
    flex-direction: row;
}

.service-layout-2 {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.service-image-large {
    width: 45%;
    background: #ddd;
}

.service-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-description {
    width: 55%;
}

.service-description h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

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

.price-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent-color);
}

.pricing-notes {
    padding: 60px 30px;
    background: var(--bg-light);
}

.notes-content {
    max-width: 900px;
    margin: 0 auto;
}

.notes-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.form-section-services {
    padding: 80px 30px;
    background: white;
}

.form-section-services .form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.form-section-services h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.form-section-services > div > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
    text-align: center;
}

.contact-hero {
    padding: 100px 30px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 54px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.contact-layout-asymmetric {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-detail {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-email {
    color: var(--text-dark);
    text-decoration: none;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.contact-visual {
    width: 50%;
    background: #ddd;
}

.contact-visual img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.directions-content {
    max-width: 900px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.directions-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.visit-cta {
    padding: 100px 30px;
    background: var(--primary-color);
    color: white;
}

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

.cta-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-info {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 35px;
    display: none;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.next-steps {
    padding: 100px 30px;
    background: white;
}

.steps-container h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.legal-page {
    padding: 80px 30px;
    background: white;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.legal-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #c0392b;
}

@media (max-width: 1200px) {
    .hero-text-block h1 {
        font-size: 48px;
    }

    .hero-image-overlap {
        width: 550px;
        height: 420px;
        right: 0;
    }

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

    .intro-visual,
    .intro-text-asymmetric {
        width: 100%;
    }

    .services-grid-asymmetric .service-card {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-decoration,
    .form-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 15px;
    }

    .hero-text-block {
        margin-left: 0;
    }

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        margin-top: 40px;
        transform: none;
    }

    .hero-text-left {
        flex-direction: column;
    }

    .hero-text-left h1,
    .hero-text-left p {
        width: 100%;
    }

    .about-content-irregular {
        flex-direction: column;
    }

    .content-block-1,
    .content-visual-overlap,
    .content-block-2 {
        width: 100%;
        margin-left: 0;
    }

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

    .service-image-large,
    .service-description {
        width: 100%;
    }

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

    .contact-info-block,
    .contact-visual {
        width: 100%;
    }

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

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

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}