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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #3498db;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-asymmetric {
    margin-top: 80px;
    min-height: 600px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding: 3rem 0;
    transform: translateY(-40px);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(60px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 62, 80, 0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.intro-overlap {
    padding: 6rem 2rem;
    background: #ffffff;
}

.intro-content-shifted {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 1.5;
    transform: translateX(-60px);
}

.intro-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-text-wide p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image-inset {
    flex: 1;
    transform: translateY(80px);
    background: #ecf0f1;
}

.intro-image-inset img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.values-staggered {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.value-block {
    max-width: 600px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-left {
    margin-left: 5%;
}

.value-right {
    margin-left: 45%;
}

.value-center {
    margin-left: 25%;
}

.value-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.services-preview-offset {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-intro-block {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro-block h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-intro-block p {
    font-size: 1.25rem;
    color: #555;
}

.services-cards-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    width: 380px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-elevated {
    transform: translateY(-30px);
}

.card-shifted {
    transform: translateY(20px);
}

.card-lowered {
    transform: translateY(60px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #ecf0f1;
}

.service-card h4 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 1.5rem 1.5rem;
}

.services-cta-inline {
    text-align: center;
    margin-top: 4rem;
}

.trust-diagonal {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
}

.trust-content-overlap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.trust-image-layer {
    flex: 1;
    background: #ecf0f1;
}

.trust-image-layer img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.trust-text-layer {
    flex: 1;
    transform: translateX(40px);
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.trust-text-layer h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-text-layer p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.form-section-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-section-split,
.form-section-services {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-left {
    flex: 1;
}

.form-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro-left p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.7;
}

.form-container-right {
    flex: 1;
}

.inquiry-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-block h4,
.footer-block h5 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block p,
.footer-block a {
    color: #b8b8b8;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-block a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid #333;
    font-size: 0.875rem;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    backdrop-filter: blur(10px);
}

.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.9375rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2ecc71;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.about-hero-diagonal {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: #f8f9fa;
    position: relative;
}

.about-content-offset {
    max-width: 800px;
    margin: 0 0 3rem 8%;
}

.about-content-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.about-content-offset p {
    font-size: 1.375rem;
    color: #555;
    line-height: 1.6;
}

.about-image-diagonal {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateX(100px);
    background: #ecf0f1;
}

.about-image-diagonal img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-overlap {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-overlap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.story-text-primary {
    flex: 1.5;
}

.story-text-primary h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text-primary p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image-inset {
    flex: 1;
    transform: translateY(60px);
    background: #ecf0f1;
}

.story-image-inset img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.principles-scattered {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.principle-block {
    max-width: 550px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.principle-position-1 {
    margin-left: 8%;
}

.principle-position-2 {
    margin-left: 52%;
}

.principle-position-3 {
    margin-left: 18%;
}

.principle-position-4 {
    margin-left: 60%;
}

.principle-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.principle-block p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.team-irregular {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.75rem;
    color: #2c3e50;
}

.team-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    width: 350px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2.5rem;
}

.member-elevated {
    transform: translateY(-30px);
}

.member-shifted {
    transform: translateY(40px);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    font-size: 0.9375rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.approach-split {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image-left {
    flex: 1;
    background: #ecf0f1;
}

.approach-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.approach-text-right {
    flex: 1;
}

.approach-text-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text-right p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-full {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.values-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.values-content-centered p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-offset {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

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

.cta-content-irregular h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content-irregular p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ecf0f1;
}

.cta-content-irregular .cta-primary {
    background: #ffffff;
    color: #2c3e50;
    margin: 0 0.5rem;
}

.cta-content-irregular .cta-primary:hover {
    background: #ecf0f1;
}

.cta-content-irregular .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
    margin: 0 0.5rem;
}

.cta-content-irregular .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.services-hero-offset {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.1;
}

.services-hero-content p {
    font-size: 1.375rem;
    color: #555;
}

.services-main-irregular {
    padding: 6rem 2rem;
    background: #ffffff;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.block-elevated {
    transform: translateY(-30px);
}

.block-shifted-right {
    margin-left: 8%;
}

.block-shifted-left {
    margin-right: 8%;
}

.service-image {
    flex: 1;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: #ecf0f1;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.btn-select-service {
    padding: 0.875rem 1.75rem;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-services {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-header p {
    font-size: 1.125rem;
    color: #555;
}

.contact-hero-split {
    margin-top: 80px;
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-intro-offset {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.contact-intro-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro-offset p {
    font-size: 1.375rem;
    color: #555;
}

.contact-main-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info-block,
.contact-details-block {
    flex: 1;
}

.block-left {
    transform: translateX(-40px);
}

.block-right {
    transform: translateX(40px);
}

.contact-info-block h2,
.contact-details-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-group h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-group p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.process-step {
    margin-bottom: 2.5rem;
    padding-left: 3rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.process-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.contact-map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-placeholder {
    max-width: 100%;
    height: 500px;
    background: #ecf0f1;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.additional-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.additional-content-centered p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-cta-offset {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-wrapper p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.thanks-content-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content-centered p {
    font-size: 1.375rem;
    color: #555;
}

.thanks-details {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-step .step-number {
    position: static;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.7;
}

.thanks-explore {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.explore-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.explore-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.explore-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.explore-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-link:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.legal-content {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.last-updated {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-container p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .ad-label {
        display: none;
    }

    .hero-offset,
    .intro-content-shifted,
    .trust-content-overlap,
    .form-section-split,
    .form-section-services,
    .story-overlap,
    .approach-split,
    .contact-main-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .hero-text-block h1,
    .about-content-offset h1,
    .services-hero-content h1,
    .contact-intro-offset h1,
    .thanks-content-centered h1 {
        font-size: 2.5rem;
    }

    .intro-text-wide,
    .hero-image-offset,
    .trust-image-layer,
    .trust-text-layer,
    .intro-image-inset {
        transform: none;
    }

    .value-left,
    .value-right,
    .value-center,
    .principle-position-1,
    .principle-position-2,
    .principle-position-3,
    .principle-position-4 {
        margin-left: 0;
    }

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