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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #8b6f47;
    --accent-color: #c17a3e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.ad-disclosure {
    background-color: #fff8e1;
    color: #7a6800;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f0e68c;
}

.header-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background-color: var(--bg-white);
    position: relative;
}

.header-left {
    flex: 0 0 auto;
}

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

.nav-floating {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-floating a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 0;
    position: relative;
}

.hero-content-left {
    flex: 0 0 42%;
    padding: 80px 0 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-content-left p {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 36px;
    color: var(--text-light);
    max-width: 520px;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4c8b8;
    margin-left: -40px;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.intro-block {
    display: flex;
    padding: 100px 8% 100px 12%;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.intro-text-offset {
    flex: 0 0 55%;
}

.intro-text-offset h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-text-offset p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
    color: var(--text-light);
}

.intro-visual {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background-color: #c9b8a3;
    border-radius: 2px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
}

.services-asymmetric {
    padding: 120px 6% 100px;
    background-color: var(--bg-light);
    position: relative;
}

.section-header-offset {
    margin-left: 15%;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.card-large {
    flex: 0 0 calc(60% - 12px);
}

.card-medium {
    flex: 0 0 calc(50% - 12px);
}

.card-small {
    flex: 0 0 calc(40% - 12px);
}

.card-wide {
    flex: 0 0 100%;
}

.service-image {
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
    overflow: hidden;
    background-color: #d4c8b8;
}

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

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

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

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

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

.btn-select-service:hover {
    background-color: #6f5838;
    transform: translateX(4px);
}

.form-section-diagonal {
    display: flex;
    min-height: 700px;
    position: relative;
    background-color: var(--bg-white);
}

.form-container-offset {
    flex: 0 0 50%;
    padding: 80px 6% 80px 10%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    z-index: 2;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.selected-service-display {
    background-color: rgba(255,255,255,0.15);
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.95);
    color: var(--text-dark);
    border-radius: 2px;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

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

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

.form-visual-bg {
    flex: 1;
    position: relative;
    background-color: #b8a593;
    margin-left: -80px;
}

.form-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 100px 8%;
    background-color: var(--bg-light);
}

.trust-content-split {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.trust-left {
    flex: 0 0 45%;
}

.trust-left h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.trust-right {
    flex: 1;
    background-color: #c9b8a3;
    border-radius: 2px;
    overflow: hidden;
}

.trust-right img {
    width: 100%;
    height: auto;
}

.features-scattered {
    display: flex;
    gap: 32px;
    margin-left: 8%;
}

.feature-item {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.feature-item h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.disclaimer-section {
    padding: 60px 8%;
    background-color: #fef9f3;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

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

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 80px 8% 30px;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 12px;
}

.footer-block a {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
    color: #b8b8b8;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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: 24px;
}

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

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

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

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

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

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

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

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

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

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

.checkmark-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

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

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

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--primary-color);
    display: none;
}

.service-confirmation.show {
    display: block;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-number {
    flex: 0 0 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step p {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    padding-top: 8px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #234731;
}

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

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

.about-hero-offset {
    display: flex;
    padding: 100px 8% 100px 6%;
    gap: 80px;
    align-items: center;
    background-color: var(--bg-light);
}

.about-intro-left {
    flex: 0 0 48%;
}

.about-intro-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 800;
}

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

.about-image-diagonal {
    flex: 1;
    margin-top: 40px;
    background-color: #c9b8a3;
    overflow: hidden;
}

.about-image-diagonal img {
    width: 100%;
    height: auto;
}

.about-story-irregular {
    padding: 120px 8%;
    background-color: var(--bg-white);
}

.story-text-block {
    max-width: 750px;
    margin-bottom: 80px;
}

.story-text-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.values-scattered {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 0 0 calc(33.333% - 22px);
    padding: 36px;
    background-color: var(--bg-light);
    border-top: 4px solid var(--primary-color);
}

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

.value-offset-2 {
    margin-top: 40px;
}

.value-offset-3 {
    margin-top: 80px;
}

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

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

.team-section-diagonal {
    padding: 100px 10% 100px 8%;
    background-color: var(--bg-light);
}

.team-header-offset {
    margin-left: 20%;
    margin-bottom: 50px;
}

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

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

.team-image-overlap {
    width: 70%;
    margin-left: 15%;
    margin-bottom: -60px;
    position: relative;
    z-index: 2;
    background-color: #c9b8a3;
    overflow: hidden;
}

.team-image-overlap img {
    width: 100%;
    height: auto;
}

.team-description {
    background-color: var(--bg-white);
    padding: 80px 8% 60px;
    max-width: 800px;
    margin-left: auto;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.approach-section {
    padding: 100px 8%;
    background-color: var(--bg-white);
}

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

.approach-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.approach-item {
    padding: 36px;
    background-color: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
}

.item-wide {
    flex: 0 0 100%;
}

.item-medium {
    flex: 0 0 calc(50% - 12px);
}

.item-small {
    flex: 0 0 calc(50% - 12px);
}

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

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

.cta-section-offset {
    padding: 100px 8%;
    background-color: var(--primary-color);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.cta-content-diagonal {
    text-align: center;
    padding: 40px 0;
    color: var(--bg-white);
}

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

.cta-content-diagonal p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background-color: #a56630;
    transform: translateY(-2px);
}

.services-hero-diagonal {
    padding: 120px 8% 80px 15%;
    background-color: var(--bg-light);
}

.services-intro-offset h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.services-intro-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
}

.service-detail-section {
    padding: 80px 8%;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px 0;
}

.card-left {
    flex-direction: row;
}

.card-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #c9b8a3;
    overflow: hidden;
}

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

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

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

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

.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 28px 0;
    padding: 16px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

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

.btn-service-action {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-info-section {
    padding: 60px 8%;
    background-color: var(--bg-light);
}

.info-box-offset {
    max-width: 900px;
    margin-left: 10%;
    padding: 36px;
    background-color: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
}

.info-box-offset h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-box-offset p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
}

.cta-services-section {
    padding: 100px 8%;
    background-color: var(--primary-color);
}

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

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

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #a56630;
    transform: scale(1.03);
}

.contact-hero-offset {
    padding: 100px 8% 80px 12%;
    background-color: var(--bg-light);
}

.contact-intro-diagonal h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.contact-intro-diagonal p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 650px;
}

.contact-info-section {
    padding: 80px 8%;
    background-color: var(--bg-white);
}

.contact-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-block {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: var(--bg-light);
    border-top: 3px solid var(--secondary-color);
}

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

.address-content p,
.email-content p,
.hours-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.email-display {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 16px 0;
}

.email-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

.hours-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

.contact-directions {
    flex: 0 0 100%;
}

.contact-alternative-section {
    padding: 80px 8%;
    background-color: var(--bg-light);
}

.alternative-contact-offset {
    max-width: 700px;
    margin-left: 15%;
    padding: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.alternative-contact-offset h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.alternative-contact-offset p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 28px;
    opacity: 0.95;
}

.btn-contact-form {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact-form:hover {
    background-color: #a56630;
    transform: translateX(4px);
}

.legal-content-section {
    padding: 80px 8% 100px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-container ul {
    margin: 16px 0 16px 32px;
}

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

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

.legal-container a:hover {
    color: var(--accent-color);
}

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

    .hero-content-left {
        flex: 1;
        padding: 60px 6%;
    }

    .hero-image-right {
        height: 400px;
        margin-left: 0;
    }

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

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

    .card-large,
    .card-medium,
    .card-small,
    .card-wide {
        flex: 0 0 100%;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container-offset {
        flex: 1;
        clip-path: none;
    }

    .form-visual-bg {
        height: 300px;
        margin-left: 0;
    }

    .trust-content-split {
        flex-direction: column;
    }

    .features-scattered {
        flex-direction: column;
        margin-left: 0;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .value-card {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .service-detail-image {
        flex: 1;
        width: 100%;
    }

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

    .contact-block {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 16px;
        font-size: 14px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .approach-item {
        flex: 0 0 100% !important;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}