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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --accent-color: #f59e0b;
    --success-color: #10b981;
}

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

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    min-width: 300px;
    padding-left: 8%;
    position: relative;
    z-index: 2;
}

.hero-title-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-visual-overlap {
    flex: 1;
    min-width: 300px;
    position: relative;
    margin-top: -2rem;
    margin-right: -5%;
}

.hero-visual-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.intro-offset {
    padding: 4rem 2rem;
    background: var(--bg-light);
    transform: skewY(-1deg);
    margin: 4rem 0;
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
    transform: skewY(1deg);
}

.intro-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-grid-irregular {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.section-title-offset {
    width: 100%;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    margin-left: 5%;
}

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

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--primary-color);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

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

.service-select-btn {
    padding: 0.9rem 1.8rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-select-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.service-select-btn.selected {
    background: var(--success-color);
}

.card-wide {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
    margin-left: 3%;
}

.card-narrow {
    flex: 1 1 calc(35% - 1rem);
    min-width: 280px;
    margin-right: 5%;
}

.card-tall {
    flex: 1 1 calc(40% - 1rem);
    min-width: 300px;
    margin-top: -3rem;
    margin-left: 8%;
}

.card-medium {
    flex: 1 1 calc(45% - 1rem);
    min-width: 300px;
    margin-top: 2rem;
}

.card-wide-alt {
    flex: 1 1 calc(55% - 1rem);
    min-width: 300px;
    margin-left: -2%;
}

.card-feature {
    flex: 1 1 calc(38% - 1rem);
    min-width: 300px;
    margin-right: 3%;
    margin-top: -1rem;
}

.trust-asymmetric {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.trust-asymmetric::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.trust-content {
    flex: 1;
    min-width: 300px;
    padding-left: 10%;
    position: relative;
    z-index: 2;
}

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

.trust-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.trust-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.trust-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transform: rotate(-2deg);
}

.cta-sticky-trigger {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.cta-block-offset {
    max-width: 900px;
    margin: 0 auto;
    margin-left: 20%;
    text-align: left;
}

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

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

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

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-right: 15%;
}

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

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    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(--primary-color);
}

.btn-submit {
    padding: 1.1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

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

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-accept:hover {
    background: #059669;
}

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

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

.page-hero-offset {
    margin-top: 80px;
    padding: 5rem 2rem 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10%;
}

.page-hero-offset h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

.about-story-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-block-left {
    flex: 1;
    min-width: 300px;
    padding-right: 5%;
}

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

.story-block-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-visual-right {
    flex: 1;
    min-width: 300px;
}

.story-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.values-irregular {
    padding: 5rem 2rem;
    background: var(--bg-light);
    max-width: 1400px;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.values-irregular h2 {
    width: 100%;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    margin-left: 5%;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(30% - 1rem);
    min-width: 280px;
}

.value-offset-1 {
    margin-top: 2rem;
    margin-left: 3%;
}

.value-offset-2 {
    margin-top: -1rem;
    margin-right: 2%;
}

.value-offset-3 {
    margin-top: 3rem;
    margin-left: 5%;
}

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

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

.team-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro-narrow {
    max-width: 800px;
    margin-left: 15%;
}

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

.team-intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-split {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.approach-content {
    flex: 1;
    min-width: 300px;
    padding-left: 8%;
}

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

.approach-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.approach-visual {
    flex: 1;
    min-width: 300px;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.services-detail-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-detail-block {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.service-detail-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.block-wide {
    flex: 1 1 100%;
    margin-left: 2%;
}

.block-narrow {
    flex: 1 1 100%;
    margin-right: 3%;
}

.block-offset {
    flex: 1 1 100%;
    margin-left: 5%;
}

.block-full {
    flex: 1 1 100%;
}

.block-split {
    flex: 1 1 100%;
    margin-left: -2%;
}

.block-feature {
    flex: 1 1 100%;
    margin-right: 4%;
}

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

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

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

.contact-asymmetric {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info-offset {
    flex: 1;
    min-width: 300px;
    padding-left: 5%;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.contact-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

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

.contact-visual-offset {
    flex: 1;
    min-width: 300px;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(1deg);
}

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

.approach-narrow {
    max-width: 900px;
    margin: 0 auto;
    margin-right: 10%;
}

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

.approach-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.contact-cta {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.thanks-hero {
    margin-top: 80px;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
    min-width: 300px;
}

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

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.step-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.step-block p {
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.thanks-visual {
    flex: 1;
    min-width: 300px;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .hero-asymmetric {
        padding: 3rem 1.5rem 2rem;
    }

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

    .hero-visual-overlap {
        margin-right: 0;
        margin-top: 1rem;
    }

    .hero-visual-overlap img {
        transform: rotate(0deg);
    }

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

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

    .card-wide,
    .card-narrow,
    .card-tall,
    .card-medium,
    .card-wide-alt,
    .card-feature {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        flex: 1 1 100%;
    }

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

    .cta-block-offset {
        margin-left: 0;
    }

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

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

    .sticky-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .page-hero-offset {
        padding-left: 2rem;
    }

    .value-offset-1,
    .value-offset-2,
    .value-offset-3 {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

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

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

    .contact-info-offset {
        padding-left: 0;
    }

    .contact-visual-offset img {
        transform: rotate(0deg);
    }

    .approach-narrow {
        margin-right: 0;
    }

    .block-wide,
    .block-narrow,
    .block-offset,
    .block-split,
    .block-feature {
        margin-left: 0;
        margin-right: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}