:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #d4a574;
    --text-dark: #1f1f1f;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.navbar-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 3rem 5%;
    gap: 4rem;
}

.hero-block-left {
    flex: 1.2;
    padding-right: 3rem;
}

.hero-block-right {
    flex: 1;
    position: relative;
    top: -2rem;
}

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

.hero-text-wrapper h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-primary,
.cta-secondary,
.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 82, 0.25);
}

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

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

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

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

.intro-offset {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.intro-narrow {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.intro-narrow h2 {
    margin-bottom: 1.5rem;
}

.intro-narrow p {
    font-size: 1.15rem;
}

.values-asymmetric {
    padding: 6rem 5%;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.offset-top {
    margin-top: -2rem;
}

.offset-middle {
    margin-top: 1.5rem;
}

.offset-bottom {
    margin-top: 3rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services-preview-split {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    background: var(--bg-light);
}

.services-left-col {
    flex: 1;
    position: relative;
    top: 2rem;
}

.services-right-col {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.link-inline {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.service-mini-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-mini-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-mini-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-block-offset {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.testimonial-content {
    flex: 1.4;
    position: relative;
    left: -1rem;
}

.testimonial-image {
    flex: 1;
    position: relative;
    top: -3rem;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

cite {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.cta-floating-section {
    padding: 5rem 5%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-wrapper-irregular {
    max-width: 700px;
    margin-left: 8%;
    color: var(--bg-white);
}

.cta-wrapper-irregular h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-wrapper-irregular p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.process-asymmetric {
    padding: 6rem 5%;
}

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

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

.step-item {
    flex: 1;
    min-width: 220px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 6px;
}

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

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

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

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

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-item h4 {
    margin-bottom: 0.8rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.form-section-asymmetric {
    padding: 6rem 5%;
    background: var(--bg-white);
}

.form-container-offset {
    max-width: 650px;
    margin-left: 10%;
}

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

.form-header h2 {
    margin-bottom: 1rem;
}

.contact-form {
    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 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 58, 82, 0.2);
}

.final-cta-block {
    padding: 5rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.footer-main {
    display: flex;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-brand {
    flex: 1.5;
}

.footer-col h4,
.footer-col h5 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    color: rgba(255,255,255,0.95);
}

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

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
}

.page-header-offset {
    padding: 5rem 5% 3rem;
    background: var(--bg-light);
}

.header-content-left {
    max-width: 750px;
}

.header-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

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

.about-text-block {
    flex: 1.3;
}

.about-image-block {
    flex: 1;
    position: relative;
    top: -2rem;
}

.about-image-block img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.mission-offset {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background: var(--bg-light);
}

.mission-card,
.vision-card {
    flex: 1;
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mission-card {
    margin-top: -1rem;
}

.vision-card {
    margin-top: 2rem;
}

.team-section-asymmetric {
    padding: 6rem 5%;
}

.team-section-asymmetric h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.team-grid-offset {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

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

.offset-pos-2 {
    margin-top: 3rem;
}

.offset-pos-3 {
    margin-top: -1.5rem;
}

.team-role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.values-detailed h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-list-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-detail {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 6px;
}

.cta-about {
    padding: 5rem 5%;
    text-align: center;
}

.cta-about-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.services-intro-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

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

.services-intro-text p {
    font-size: 1.1rem;
}

.services-grid-asymmetric {
    padding: 5rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.offset-service-2 {
    margin-top: 2rem;
}

.offset-service-3 {
    margin-top: -1rem;
}

.offset-service-4 {
    margin-top: 1.5rem;
}

.offset-service-5 {
    margin-top: -0.5rem;
}

.offset-service-6 {
    margin-top: 2.5rem;
}

.featured-service {
    position: relative;
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: -0.8rem;
    right: 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 2.5rem 2.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
}

.service-header h3 {
    margin-bottom: 0;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.service-body {
    padding: 2rem 2.5rem 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body p {
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-service-featured {
    background: var(--accent-color);
}

.btn-service-featured:hover {
    background: #c49563;
}

.services-additional-info {
    display: flex;
    gap: 3rem;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.info-block {
    flex: 1;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.info-block h3 {
    margin-bottom: 1rem;
}

.contact-split-section {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

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

.contact-map-placeholder {
    flex: 1;
    position: relative;
    top: -2rem;
}

.contact-map-placeholder img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.contact-detail h4 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-detail p {
    line-height: 1.8;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.contact-approach h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.approach-card h4 {
    margin-bottom: 1rem;
}

.faq-contact-section {
    padding: 5rem 5%;
}

.faq-contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.cta-contact {
    padding: 5rem 5%;
    background: var(--primary-color);
}

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

.cta-contact-wrapper h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-contact-wrapper p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.newsletter-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: var(--bg-white);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #c49563;
}

.thanks-hero {
    padding: 6rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: var(--success-color);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.thanks-next-steps {
    padding: 5rem 5%;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-box {
    flex: 1;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.thanks-resources {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-resources h3 {
    margin-bottom: 1rem;
}

.thanks-resources p {
    margin-bottom: 2rem;
}

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

.resource-link {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--bg-white);
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.thanks-cta {
    padding: 4rem 5%;
    text-align: center;
}

.thanks-cta-content h3 {
    margin-bottom: 1rem;
}

.legal-page-header {
    padding: 4rem 5% 2rem;
    background: var(--bg-light);
}

.legal-page-header h1 {
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section code {
    background: var(--bg-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-block-right {
        top: 0;
    }

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

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

    .services-preview-split {
        flex-direction: column;
        gap: 3rem;
    }

    .services-left-col {
        top: 0;
    }

    .testimonial-block-offset {
        flex-direction: column;
    }

    .testimonial-content {
        left: 0;
    }

    .testimonial-image {
        top: 0;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-item {
        margin-top: 0 !important;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-intro-asymmetric {
        flex-direction: column;
    }

    .about-image-block {
        top: 0;
    }

    .mission-offset {
        flex-direction: column;
    }

    .mission-card,
    .vision-card {
        margin-top: 0 !important;
    }

    .team-grid-offset .team-member {
        margin-top: 0 !important;
    }

    .services-grid-asymmetric .service-card {
        margin-top: 0 !important;
    }

    .contact-split-section {
        flex-direction: column;
    }

    .contact-map-placeholder {
        top: 0;
    }

    .steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .navbar-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .newsletter-form-inline {
        flex-direction: column;
    }
}
