/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2a5934;
    --primary-dark: #1d3f25;
    --primary-light: #3d7a4a;
    --accent-color: #c49b63;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

html {
    scroll-behavior: smooth;
}

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(--bg-white);
}

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

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

a:hover {
    color: var(--primary-dark);
}

/* Container Utilities */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Floating Style */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.cta-button-small {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section - Visual First */
.hero-visual {
    margin-top: 64px;
    min-height: 85vh;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 24px;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Intro Story Section */
.intro-story {
    padding: 80px 0;
    background: var(--bg-light);
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.intro-text-emphasis {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Problem Section - Split Layout */
.problem-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

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

.link-inline {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    color: var(--primary-color);
}

/* Insight Section */
.insight-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.insight-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 48px;
    border-radius: 16px;
    color: white;
}

.insight-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.insight-card p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 16px;
}

/* Visual Break - Image Grid */
.visual-break {
    padding: 0;
}

.image-grid {
    display: flex;
    gap: 0;
    height: 500px;
}

.grid-item {
    flex: 1;
    overflow: hidden;
}

.grid-item.large {
    flex: 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* Trust Building Section */
.trust-building {
    padding: 100px 0;
    background: var(--bg-light);
}

.center-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 60px;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    min-width: 80px;
}

.step h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-medium);
}

.cta-center {
    text-align: center;
    margin-top: 48px;
}

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

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
}

/* Services Section */
.services-overview {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-heading-large {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -1.5px;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-card > * {
    padding: 0 24px;
}

.service-card .service-image {
    padding: 0;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0 12px 0;
    padding: 0 24px;
    color: var(--text-dark);
}

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
    padding: 0 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 0 24px;
}

.service-select-btn {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background: var(--primary-dark);
}

/* Urgency Section */
.urgency-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.urgency-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.urgency-box h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.urgency-note {
    font-weight: 600;
    color: var(--primary-color);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.form-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.form-intro {
    font-size: 19px;
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px;
    border-radius: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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);
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-medium);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

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

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

/* Final Trust Section */
.final-trust {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

/* Page Hero for Internal Pages */
.page-hero {
    padding: 120px 0 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.lead-text {
    font-size: 22px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.image-break {
    margin: 60px 0;
    border-radius: 16px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: auto;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin: 60px 0;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-medium);
}

.cta-box-centered {
    background: var(--primary-color);
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
}

.cta-box-centered h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.cta-box-centered .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-box-centered .cta-button:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Services Detail Page */
.services-detailed {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    color: var(--text-medium);
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
}

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 36px;
}

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

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 16px;
    text-align: center;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
}

.cta-section-alt {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-section-alt p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px 0;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    color: var(--text-dark);
}

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

.thanks-next-steps {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps-list {
    list-style: none;
    counter-reset: steps;
}

.next-steps-list li {
    counter-increment: steps;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
}

.next-steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.link-secondary {
    display: inline-block;
    padding: 18px 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 100px 0 80px 0;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 16px 0;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 28px 0 12px 0;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }

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

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

    .image-grid {
        flex-direction: column;
        height: auto;
    }

    .grid-item {
        height: 250px;
    }

    .trust-points {
        flex-direction: column;
        gap: 24px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stats-row {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .section-heading {
        font-size: 32px;
    }

    .section-heading-large {
        font-size: 38px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .link-secondary {
        width: 100%;
    }
}
