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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #f59e0b;
}

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

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 32px;
    width: 260px;
    height: calc(100vh - 32px);
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 40px 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    padding: 0 30px;
    margin-bottom: 50px;
    color: var(--bg-white);
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 14px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    padding-left: 40px;
}

.nav-footer {
    padding: 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.nav-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: var(--bg-white);
}

.main-content {
    margin-left: 260px;
    margin-top: 32px;
    min-height: 100vh;
}

.hero-asymmetric {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    padding: 80px 60px 40px;
    max-width: 680px;
}

.hero-text-block.offset-left {
    margin-left: 120px;
    margin-top: 60px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.hero-image-block {
    width: calc(100% - 100px);
    height: 500px;
    overflow: hidden;
    background-color: #cbd5e1;
}

.hero-image-block.offset-right {
    margin-left: auto;
    margin-right: 0;
    margin-top: -180px;
}

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

.intro-offset {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.intro-image.small-left {
    width: 380px;
    height: 480px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #cbd5e1;
    margin-top: 80px;
}

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

.intro-text {
    flex: 1;
    padding-top: 20px;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

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

.services-cards-irregular {
    padding: 120px 60px;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 70px;
    max-width: 800px;
}

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-offset-1 {
    margin-left: 0;
    flex-direction: row;
}

.card-offset-2 {
    margin-left: 150px;
    flex-direction: row-reverse;
}

.card-offset-3 {
    margin-left: 80px;
    flex-direction: row;
}

.card-offset-4 {
    margin-left: 200px;
    flex-direction: row-reverse;
}

.card-offset-5 {
    margin-left: 40px;
    flex-direction: row;
}

.card-image-wrap {
    width: 45%;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #cbd5e1;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 40px 45px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.cta-floating-block {
    display: flex;
    min-height: 500px;
    position: relative;
    margin: 0 60px;
    margin-top: -40px;
}

.cta-content-overlap {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 50px;
    width: 55%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
}

.cta-content-overlap h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content-overlap p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 15px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.cta-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    background-color: #cbd5e1;
}

.cta-image-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section-irregular {
    padding: 120px 60px;
    background-color: var(--bg-white);
}

.form-wrapper-offset {
    max-width: 800px;
    margin-left: 180px;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-color);
    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(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px;
    margin: 80px 60px;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 60px 30px;
    margin-left: -260px;
}

.footer-blocks {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding-left: 320px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    color: var(--bg-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-block a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 260px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1002;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

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

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

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

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

.about-hero-offset {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.about-header-block {
    max-width: 900px;
    margin-left: 120px;
}

.about-header-block h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
}

.about-story-irregular {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background-color: var(--bg-white);
    align-items: center;
}

.story-content-left {
    flex: 1;
    padding-right: 40px;
}

.story-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

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

.story-image-right {
    width: 500px;
    height: 600px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #cbd5e1;
}

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

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

.values-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 70px;
    text-align: center;
}

.values-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-block {
    background-color: var(--bg-white);
    padding: 40px 50px;
}

.value-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

.block-pos-1 {
    margin-left: 0;
}

.block-pos-2 {
    margin-left: 120px;
}

.block-pos-3 {
    margin-left: 60px;
}

.block-pos-4 {
    margin-left: 180px;
}

.methodology-section-offset {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.methodology-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.methodology-visual {
    width: 480px;
    height: 550px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #cbd5e1;
    margin-top: 60px;
}

.methodology-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.methodology-text {
    flex: 1;
}

.methodology-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.cta-about-section {
    padding: 80px 60px;
    background-color: var(--primary-color);
    margin: 80px 60px 0;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.cta-about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 36px;
}

.cta-btn-about {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-btn-about:hover {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.services-header-asymmetric {
    padding: 100px 60px 60px;
    background-color: var(--bg-light);
}

.services-header-asymmetric h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: 80px;
}

.services-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin-left: 80px;
}

.services-detailed {
    padding: 80px 60px;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

.layout-offset-left {
    flex-direction: row;
    margin-left: 0;
}

.layout-offset-right {
    flex-direction: row-reverse;
    margin-left: 100px;
}

.layout-offset-center {
    flex-direction: row;
    margin-left: 50px;
}

.service-detail-visual {
    width: 480px;
    height: 520px;
    flex-shrink: 0;
    overflow: hidden;
    background-color: #cbd5e1;
}

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

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

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

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service-action {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background-color: var(--primary-color);
    transform: translateX(4px);
}

.services-cta-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.cta-services-contact {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-services-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-header-section {
    padding: 100px 60px 60px;
    background-color: var(--bg-light);
}

.contact-header-section h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 24px;
    margin-left: 60px;
}

.contact-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
    margin-left: 60px;
}

.contact-info-asymmetric {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-blocks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 50px;
}

.contact-block h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.block-offset-1 {
    margin-left: 0;
}

.block-offset-2 {
    margin-left: 140px;
}

.block-offset-3 {
    margin-left: 80px;
}

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

.contact-address {
    font-size: 18px;
    line-height: 1.8;
}

.contact-email-display {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.email-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 16px;
}

.schedule-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 16px;
}

.contact-map-section {
    padding: 0 60px;
    margin-bottom: 80px;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #cbd5e1;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.9);
    color: var(--bg-white);
    padding: 20px 40px;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
}

.contact-additional-info {
    padding: 60px;
    background-color: var(--bg-light);
    margin: 0 60px 80px;
}

.additional-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.additional-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.additional-wrapper p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 18px;
}

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

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

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

.thanks-content-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

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

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next-steps {
    background-color: var(--bg-white);
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.next-steps-list {
    list-style: none;
    padding-left: 0;
}

.next-steps-list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.next-steps-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-back-home,
.btn-view-services {
    display: inline-block;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-home {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-back-home:hover {
    background-color: var(--primary-dark);
}

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

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

.legal-page-header {
    padding: 100px 60px 60px;
    background-color: var(--bg-light);
}

.legal-page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-left: 40px;
}

.legal-intro {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 900px;
    margin-left: 40px;
}

.legal-content {
    padding: 80px 60px;
    background-color: var(--bg-white);
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 28px;
    margin-bottom: 14px;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .footer-asymmetric {
        margin-left: -200px;
    }

    .footer-blocks {
        padding-left: 260px;
    }

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

    .services-grid-asymmetric {
        gap: 60px;
    }

    .card-offset-2,
    .card-offset-4 {
        margin-left: 100px;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
    }

    .main-content {
        margin-left: 0;
    }

    .footer-asymmetric {
        margin-left: 0;
    }

    .footer-blocks {
        flex-direction: column;
        padding-left: 0;
        gap: 40px;
    }

    .footer-bottom {
        margin-left: 0;
    }

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

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

    .hero-image-block.offset-right {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

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

    .intro-image.small-left {
        width: 100%;
        margin-top: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
        flex-direction: column;
    }

    .card-image-wrap {
        width: 100%;
        height: 300px;
    }

    .cta-floating-block {
        flex-direction: column;
        margin: 0 20px;
    }

    .cta-content-overlap {
        width: 100%;
        margin-top: 0;
    }

    .cta-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .form-wrapper-offset {
        margin-left: 0;
    }

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

    .story-image-right {
        width: 100%;
    }

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

    .methodology-visual {
        width: 100%;
        margin-top: 0;
    }

    .service-detail-block {
        flex-direction: column;
    }

    .layout-offset-left,
    .layout-offset-right,
    .layout-offset-center {
        flex-direction: column;
        margin-left: 0;
    }

    .service-detail-visual {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}