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

:root {
    --primary-color: #1a2b4a;
    --secondary-color: #ff6b35;
    --accent-color: #f7931e;
    --text-dark: #2c3e50;
    --text-light: #6c7a89;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

.ad-disclosure {
    background-color: #fffbea;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
    padding: 20px 0;
}

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

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

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

.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(--secondary-color);
}

.hero-offset {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
}

.hero-text-block {
    max-width: 650px;
    position: relative;
    z-index: 2;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

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

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

.cta-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 1;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-diagonal {
    padding: 120px 40px 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
}

.content-narrow-left {
    flex: 1;
    max-width: 580px;
    padding-left: 8%;
}

.content-narrow-left h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 28px;
    font-weight: 700;
}

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

.image-floating-right {
    flex: 1;
    max-width: 520px;
    transform: translateY(-30px);
    box-shadow: 20px 30px 80px rgba(0, 0, 0, 0.15);
}

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

.services-staggered {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.section-title-offset {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 70px;
    margin-left: 8%;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-card.card-left {
    flex-direction: row;
    padding-left: 5%;
}

.service-card.card-right {
    flex-direction: row-reverse;
    padding-right: 5%;
}

.service-image {
    flex: 1;
    max-width: 550px;
    position: relative;
    background-color: var(--bg-light);
}

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

.service-content {
    flex: 1;
    max-width: 500px;
}

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

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

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0 20px;
}

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

.btn-select-service:hover {
    background-color: #0f1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 43, 74, 0.3);
}

.form-section-asymmetric {
    padding: 120px 40px;
    background: linear-gradient(165deg, var(--primary-color) 0%, #2c4571 100%);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 12%;
    background-color: white;
    padding: 60px;
    box-shadow: 30px 30px 100px rgba(0, 0, 0, 0.3);
    transform: translateX(-40px);
}

.form-container-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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 {
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.trust-block-diagonal {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 260px;
    max-width: 500px;
    padding: 35px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.footer-asymmetric {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 40px 30px;
}

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

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

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-block a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-block a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #e55a2b;
}

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

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

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
}

.about-hero-offset {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.about-content-block {
    max-width: 900px;
    margin-left: 10%;
}

.about-content-block h1 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.about-content-block p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.story-asymmetric {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.story-text-left {
    flex: 1;
    max-width: 600px;
}

.story-text-left h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 22px;
}

.story-image-right {
    flex: 1;
    max-width: 600px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.values-diagonal {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.values-diagonal h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 40px;
    background-color: white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

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

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

.team-staggered {
    padding: 100px 40px;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-image-offset {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(40px);
    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

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

.process-asymmetric {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.process-asymmetric h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    padding: 40px;
    background-color: white;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-item.step-left {
    margin-right: 10%;
}

.step-item.step-right {
    margin-left: 10%;
}

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

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

.cta-about {
    padding: 80px 40px;
    text-align: center;
    background-color: var(--bg-white);
}

.cta-about h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 35px;
    font-weight: 700;
}

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

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.services-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c4571 100%);
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
}

.services-hero p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-asymmetric {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.service-detail-block {
    display: flex;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-block.block-offset-left {
    flex-direction: row;
    padding-left: 5%;
}

.service-detail-block.block-offset-right {
    flex-direction: row-reverse;
    padding-right: 5%;
}

.service-detail-image {
    flex: 1;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.service-detail-content {
    flex: 1;
    max-width: 550px;
}

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #0f1a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 43, 74, 0.3);
}

.additional-services {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.additional-services h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.cta-services {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-white);
}

.cta-services h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.cta-button-large:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-hero-diagonal {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

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

.contact-hero-diagonal p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-asymmetric {
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-block-left {
    flex: 1;
    max-width: 600px;
}

.contact-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-image-right {
    flex: 1;
    max-width: 600px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

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

.visit-info {
    padding: 80px 40px;
    background-color: var(--bg-light);
    max-width: 1000px;
    margin: 0 auto;
}

.visit-info h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.contact-cta-offset {
    padding: 100px 40px;
    text-align: center;
}

.contact-cta-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-offset p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

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

.service-confirmation {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 19px;
}

.thanks-next-steps {
    background-color: white;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

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

.btn-home,
.btn-services {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-home:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
}

.btn-services {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

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

.legal-page h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: var(--primary-color);
}

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-text-block {
        margin-left: 0;
        max-width: 100%;
    }

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

    .intro-diagonal {
        flex-direction: column;
        padding: 80px 30px;
    }

    .content-narrow-left {
        padding-left: 0;
    }

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

    .form-container-offset {
        margin-left: 0;
        transform: translateX(0);
    }

    .story-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
}

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

    .section-title-offset {
        font-size: 32px;
        margin-left: 0;
    }

    .about-content-block h1,
    .contact-hero-diagonal h1 {
        font-size: 38px;
    }

    .thanks-content h1 {
        font-size: 34px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}