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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a3c6e;
    --accent-color: #4a90e2;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    order: 1;
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    order: 3;
    flex-basis: 100%;
    margin-top: 0.5rem;
    text-align: center;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 55%;
    padding: 8rem 5% 4rem 8%;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-overlap {
    width: 50%;
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 0;
    background-size: cover;
    background-position: center;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.intro-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-light);
}

.intro-block-left {
    width: 45%;
    padding-right: 3rem;
}

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

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

.intro-visual-right {
    width: 55%;
    position: relative;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    box-shadow: 15px 15px 0 var(--accent-color);
}

.services-irregular {
    padding: 7rem 5% 5rem;
    background-color: var(--bg-white);
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 10%;
    color: var(--secondary-color);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card {
    width: calc(33.333% - 1.5rem);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 240px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--primary-color);
}

.card-overlap-1 {
    margin-top: 2rem;
}

.card-overlap-2 {
    margin-top: -1rem;
}

.card-overlap-3 {
    margin-top: 3rem;
}

.card-overlap-4 {
    margin-top: 0;
}

.card-overlap-5 {
    margin-top: 1.5rem;
}

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

.trust-diagonal {
    padding: 5rem 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    margin: 4rem 0 4rem 5%;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.trust-content-slant {
    max-width: 700px;
    color: var(--bg-white);
}

.trust-content-slant h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-content-slant p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.form-section-offset {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.form-container-irregular {
    max-width: 650px;
    margin-left: 15%;
    background-color: var(--bg-white);
    padding: 3rem;
    box-shadow: 20px 20px 0 var(--accent-color);
}

.form-container-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.benefits-stacked {
    padding: 6rem 10%;
    background-color: var(--bg-white);
}

.benefits-stacked h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.benefits-asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 2.5rem;
    background-color: var(--bg-light);
}

.benefit-left {
    margin-right: 20%;
    border-left: 5px solid var(--accent-color);
}

.benefit-right {
    margin-left: 25%;
    border-right: 5px solid var(--primary-color);
}

.benefit-center {
    margin: 0 10%;
    border-bottom: 5px solid var(--secondary-color);
}

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

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

.footer-asymmetric {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-block {
    width: 22%;
    margin-bottom: 2rem;
}

.footer-main {
    width: 30%;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-block p,
.footer-block li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 60, 110, 0.98);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 2rem;
}

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

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

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

.cookie-btn,
.cookie-btn-secondary {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 0.95rem;
}

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

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

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

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

.about-hero-offset {
    padding: 6rem 8% 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.about-content-irregular {
    max-width: 700px;
    margin-left: 10%;
}

.about-content-irregular h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-content-irregular p {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-story-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.story-block-left {
    width: 50%;
}

.story-block-left img {
    width: 100%;
    height: auto;
    box-shadow: -15px 15px 0 var(--primary-color);
}

.story-content-right {
    width: 50%;
    padding-left: 2rem;
}

.story-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.mission-diagonal {
    padding: 5rem 8%;
    background: linear-gradient(120deg, var(--accent-color) 0%, var(--primary-color) 100%);
    margin: 3rem 0 3rem 8%;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.mission-diagonal h2 {
    font-size: 2.8rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
    text-align: center;
}

.mission-content-slant {
    max-width: 800px;
    margin: 0 auto;
    color: var(--bg-white);
}

.mission-content-slant p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-irregular {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.section-title-center {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.values-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    width: calc(50% - 1.25rem);
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

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

.value-pos-2 {
    margin-top: 0;
}

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

.value-pos-4 {
    margin-top: 2rem;
}

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

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

.expertise-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-white);
}

.expertise-text {
    width: 50%;
}

.expertise-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.expertise-visual {
    width: 50%;
}

.expertise-visual img {
    width: 100%;
    height: auto;
    box-shadow: 15px -15px 0 var(--secondary-color);
}

.cta-about-offset {
    padding: 5rem 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-about-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

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

.services-hero-diagonal {
    padding: 6rem 8% 4rem;
    background: linear-gradient(125deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

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

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
}

.services-detailed {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.service-detail-irregular {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-irregular:last-child {
    border-bottom: none;
}

.service-visual-left,
.service-visual-right {
    width: 45%;
}

.service-visual-left img,
.service-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-info-left,
.service-info-right {
    width: 55%;
}

.service-info-left h2,
.service-info-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-right: 1rem;
}

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

.process-section-offset {
    padding: 6rem 8%;
    background-color: var(--bg-light);
}

.process-section-offset h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.process-steps-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    width: calc(50% - 1rem);
    padding: 2.5rem;
    background-color: var(--bg-white);
    position: relative;
}

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

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

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

.step-4 {
    margin-top: 4rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.process-step p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services-diagonal {
    padding: 5rem 8%;
    background: linear-gradient(130deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 3rem 5% 0 0;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.cta-content-slant {
    text-align: center;
    color: var(--bg-white);
}

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

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

.contact-hero-offset {
    padding: 6rem 8% 4rem 12%;
    background-color: var(--bg-light);
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.contact-content-irregular {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--bg-white);
}

.contact-info-block {
    width: 50%;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-detail-group {
    margin-bottom: 2.5rem;
}

.contact-detail-group h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.contact-visual-offset {
    width: 50%;
    margin-top: 3rem;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    box-shadow: -20px 20px 0 var(--accent-color);
}

.contact-note-diagonal {
    padding: 5rem 8%;
    background: linear-gradient(125deg, var(--accent-color) 0%, var(--primary-color) 100%);
    margin: 3rem 8% 3rem 0;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.note-content-slant {
    max-width: 700px;
    color: var(--bg-white);
}

.note-content-slant h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.note-content-slant p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-directions {
    padding: 5rem 8%;
    background-color: var(--bg-light);
}

.contact-directions h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

.directions-content {
    display: flex;
    gap: 3rem;
}

.direction-item {
    width: 50%;
    background-color: var(--bg-white);
    padding: 2.5rem;
}

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

.direction-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-hero-center {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--bg-white);
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.thanks-info-offset {
    padding: 5rem 8%;
    background-color: var(--bg-white);
}

.thanks-details {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-details h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.next-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.step-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-cta-diagonal {
    padding: 5rem 8%;
    background-color: var(--bg-light);
    text-align: center;
}

.thanks-cta-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-cta-diagonal p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.legal-content {
    padding: 4rem 10%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-date,
.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

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

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    font-size: 1rem;
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        padding: 4rem 5%;
    }

    .hero-image-overlap {
        width: 100%;
        position: relative;
        height: 400px;
    }

    .intro-offset,
    .about-story-asymmetric,
    .expertise-split,
    .contact-content-irregular {
        flex-direction: column;
    }

    .intro-block-left,
    .intro-visual-right,
    .story-block-left,
    .story-content-right,
    .expertise-text,
    .expertise-visual,
    .contact-info-block,
    .contact-visual-offset {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .footer-block {
        width: 45%;
    }

    .footer-main {
        width: 100%;
    }

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

    .service-visual-left,
    .service-visual-right,
    .service-info-left,
    .service-info-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .service-card,
    .value-card,
    .process-step,
    .direction-item {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}