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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f772d;
    --accent-color: #90a955;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-cream: #fef7f0;
    --white: #ffffff;
    --border-color: #e5e7eb;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.95);
    color: var(--white);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.header-asymmetric {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: var(--bg-cream);
    padding: 8px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

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

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

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

.main-asymmetric {
    overflow-x: hidden;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-left: 80px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

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

.intro-block-offset {
    background-color: var(--bg-light);
    padding: 100px 40px;
    margin-left: 10%;
    border-radius: 12px 0 0 12px;
}

.intro-narrow {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.comparison-asymmetric {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-header-offset {
    margin-left: 15%;
    margin-bottom: 60px;
}

.comparison-header-offset h2 {
    font-size: 42px;
    color: var(--text-dark);
    font-weight: 700;
}

.comparison-cards-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card-system {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-system:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-elevated-1 {
    margin-left: 0;
}

.card-elevated-2 {
    margin-left: 8%;
}

.card-elevated-3 {
    margin-left: 4%;
}

.card-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

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

.card-content {
    flex: 1;
    padding: 40px;
}

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

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.system-features {
    list-style: none;
    padding: 0;
}

.system-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.system-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.cost-analysis-diagonal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 40px;
    margin: 80px 0;
    transform: skewY(-2deg);
}

.cost-content-overlay {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    color: var(--white);
}

.cost-content-overlay h2 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
}

.cost-content-overlay > p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.cost-table-styled {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.cost-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-header {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cost-col {
    flex: 1;
    padding: 0 16px;
    color: var(--text-dark);
}

.cost-col:first-child {
    flex: 1.5;
}

.cost-disclaimer {
    font-size: 14px;
    opacity: 0.85;
    font-style: italic;
}

.services-preview-scattered {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-offset {
    margin-left: 20%;
    margin-bottom: 60px;
}

.services-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.services-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-link-card {
    display: block;
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-link-card:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.service-position-1 {
    margin-left: 5%;
}

.service-position-2 {
    margin-left: 15%;
}

.service-position-3 {
    margin-left: 10%;
}

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

.service-link-card p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    padding-right: 24px;
}

.service-cta::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.service-link-card:hover .service-cta::after {
    transform: translateX(6px);
}

.form-section-offset {
    background-color: var(--bg-light);
    padding: 100px 40px;
    margin-right: 10%;
    border-radius: 0 12px 12px 0;
}

.form-container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.form-intro-side h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.form-styled {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.trust-block-diagonal {
    padding: 100px 40px;
    background-color: var(--bg-cream);
    transform: skewY(2deg);
    margin: 80px 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(-2deg);
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.trust-item {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.trust-item:nth-child(1) {
    transform: translateY(20px);
}

.trust-item:nth-child(2) {
    transform: translateY(-20px);
}

.trust-item:nth-child(3) {
    transform: translateY(10px);
}

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: var(--white);
}

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

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

.page-hero-offset {
    padding: 100px 40px 60px;
    background-color: var(--bg-cream);
    margin-bottom: 60px;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 15%;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left {
    padding-right: 40px;
}

.service-content-right {
    padding-left: 40px;
}

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

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

.service-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-benefits li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
}

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.service-image-right,
.service-image-left {
    flex: 1;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

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

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

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-hero-diagonal {
    display: flex;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--bg-cream);
}

.about-hero-text {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero-text p {
    font-size: 20px;
    color: var(--text-light);
}

.about-hero-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.about-story-offset {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-content-narrow {
    max-width: 800px;
    margin-left: 15%;
}

.story-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

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

.values-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 10%;
    font-weight: 700;
}

.values-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-pos-1 {
    transform: translateX(40px);
}

.value-pos-2 {
    transform: translateX(-20px);
}

.value-pos-3 {
    transform: translateX(60px);
}

.value-pos-4 {
    transform: translateX(20px);
}

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

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

.team-section-asymmetric {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    margin-bottom: 60px;
    margin-left: 20%;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.team-members-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    padding: 32px;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.team-member:nth-child(1) {
    margin-left: 5%;
}

.team-member:nth-child(2) {
    margin-left: 15%;
}

.team-member:nth-child(3) {
    margin-left: 10%;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

.cert-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 700;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.cert-list li:last-child {
    border-bottom: none;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

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

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

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

.contact-hero {
    padding: 100px 40px 60px;
    background-color: var(--bg-cream);
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    color: var(--text-light);
}

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

.contact-details-offset {
    flex: 1;
}

.contact-block {
    margin-bottom: 48px;
}

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

.contact-address,
.contact-email-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image-side {
    flex: 1;
}

.contact-image-side img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.map-placeholder-section {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

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

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    margin-bottom: 40px;
}

.service-selected {
    font-size: 16px;
    color: var(--text-dark);
    padding: 16px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.service-selected strong {
    color: var(--primary-color);
}

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.main-legal {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

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

    .hero-image-right {
        margin-top: 40px;
        width: 100%;
    }

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

    .card-elevated-1,
    .card-elevated-2,
    .card-elevated-3 {
        margin-left: 0;
    }

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

    .card-image {
        flex: 0 0 300px;
    }

    .service-item-asymmetric,
    .service-reverse {
        flex-direction: column;
    }

    .service-content-left,
    .service-content-right {
        padding: 0;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

    .about-hero-text {
        padding: 60px 20px;
    }

    .values-grid-irregular {
        flex-direction: column;
    }

    .value-pos-1,
    .value-pos-2,
    .value-pos-3,
    .value-pos-4 {
        transform: none;
    }

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .services-intro-offset {
        margin-left: 0;
    }

    .service-position-1,
    .service-position-2,
    .service-position-3 {
        margin-left: 0;
    }

    .team-intro {
        margin-left: 0;
    }

    .team-member:nth-child(1),
    .team-member:nth-child(2),
    .team-member:nth-child(3) {
        margin-left: 0;
    }

    .story-content-narrow {
        margin-left: 0;
    }

    .page-hero-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    .comparison-header-offset h2,
    .services-intro-offset h2,
    .values-title-offset,
    .team-intro h2 {
        font-size: 32px;
    }

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

    .trust-item:nth-child(1),
    .trust-item:nth-child(2),
    .trust-item:nth-child(3) {
        transform: none;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}