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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #3182ce;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

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

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

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-offset {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-visual-layer {
    flex: 1;
    position: relative;
    margin-right: -150px;
    margin-top: -80px;
}

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

.intro-story {
    padding: 8rem 2rem;
    background-color: var(--light-bg);
}

.story-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.story-image-overlap {
    flex: 1;
    position: relative;
    margin-left: -60px;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background-color: #cbd5e0;
    object-fit: cover;
}

.problem-amplification {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.problem-container-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.problem-visual {
    flex: 1;
    margin-left: -100px;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -15px 15px 50px rgba(0,0,0,0.12);
    background-color: #cbd5e0;
    object-fit: cover;
}

.problem-text-layer {
    flex: 1.3;
}

.problem-text-layer h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.problem-text-layer p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.problem-insight {
    font-size: 1.15rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 2rem;
}

.insight-reveal {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.insight-lead {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.95;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.insight-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.trust-building {
    padding: 0;
}

.trust-layout-stacked {
    display: flex;
    flex-direction: column;
}

.trust-image-background {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-overlay {
    background-color: rgba(0,0,0,0.5);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
}

.trust-overlay h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.testimonials-offset {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.services-selection {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

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

.service-card p {
    margin: 0 1.5rem 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 1.5rem 1rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2c5aa0;
}

.form-section {
    padding: 7rem 2rem;
    background-color: var(--light-bg);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.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(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px 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 textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: var(--light-bg);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background-color: #2c5aa0;
}

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

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

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

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.disclaimer p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

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

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

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #48bb78;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.thanks-details {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-details p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.thanks-timeline {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.about-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.about-story {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.story-layout-offset {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

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

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

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: #cbd5e0;
    object-fit: cover;
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.team-approach {
    padding: 6rem 2rem;
    background-color: var(--white);
}

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

.team-image {
    flex: 1.2;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: #cbd5e0;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.team-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.certifications {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.cert-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.services-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-intro-text {
    font-size: 1.2rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 4rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 3rem;
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    background-color: #cbd5e0;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

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

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

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

.service-price-display {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2c5aa0;
}

.installation-process {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.installation-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

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

.step h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-hero {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    background-color: #cbd5e0;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.contact-note {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
}

.contact-note p {
    margin: 0;
    color: var(--text-light);
}

.contact-note a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.coverage-area {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.coverage-area h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.coverage-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.coverage-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.coverage-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

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

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

@media (max-width: 1024px) {
    .hero-content-offset,
    .story-grid-irregular,
    .problem-container-offset,
    .story-layout-offset,
    .team-layout,
    .contact-layout {
        flex-direction: column;
    }

    .hero-visual-layer,
    .story-image-overlap,
    .problem-visual {
        margin: 0;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .story-text h2,
    .problem-text-layer h2,
    .about-hero-content h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .insight-wrapper h2 {
        font-size: 2rem;
    }

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