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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a8fb5;
    --accent-color: #e8943f;
    --dark-bg: #1a3a4a;
    --light-bg: #f5f7fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --success: #48bb78;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.hidden {
    display: none !important;
}

/* Navigation - Split Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-right a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem 5%;
    gap: 4rem;
}

.hero-left, .hero-right {
    flex: 1;
}

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

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
}

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

.cta-secondary:hover {
    background: #d47e2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 148, 63, 0.3);
}

.link-inline {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-inline:hover {
    color: var(--primary-color);
}

.cta-link {
    color: var(--text-light);
    display: inline-block;
    margin-left: 1.5rem;
}

.cta-link:hover {
    color: var(--primary-color);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--light-bg);
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-left, .intro-right {
    flex: 1;
}

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

.intro-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-left img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Value Cards */
.value-cards {
    padding: 5rem 5%;
    background: var(--white);
}

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

.cards-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

/* Story Split Section */
.story-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.story-left, .story-right {
    flex: 1;
}

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

.story-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Services Selection Section */
.services-selection {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.select-service {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

#selected-service-name {
    color: var(--accent-color);
    font-weight: 600;
}

#selected-service-price {
    color: var(--primary-color);
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 124, 0.3);
}

/* Trust Split Section */
.trust-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--light-bg);
}

.trust-split.reverse {
    flex-direction: row-reverse;
}

.trust-left, .trust-right {
    flex: 1;
}

.trust-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

blockquote {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

blockquote p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.trust-left img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* CTA Full Section */
.cta-full {
    padding: 5rem 5%;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-full p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Split */
.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 3rem 5%;
    background: var(--dark-bg);
    color: var(--white);
}

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

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

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(232, 148, 63, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d47e2e;
    transform: scale(1.05);
}

/* Page Hero */
.page-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Specific */
.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.about-left, .about-right {
    flex: 1;
}

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

.about-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-left img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

.value-item {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
}

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

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

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.team-split.reverse {
    flex-direction: row-reverse;
}

.team-left, .team-right {
    flex: 1;
}

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

.team-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-right img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item .year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 120px;
}

.timeline-item .content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.cta-about {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

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

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

/* Services Page Specific */
.service-detail-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

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

.service-detail-left h2,
.service-detail-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-left p,
.service-detail-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-detail-left ul,
.service-detail-right ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-left li,
.service-detail-right li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.service-detail-right img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-top: 1rem;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.comparison-section {
    padding: 5rem 5%;
    background: var(--white);
}

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

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

thead {
    background: var(--primary-color);
    color: var(--white);
}

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

th {
    font-weight: 600;
}

tbody tr:hover {
    background: var(--light-bg);
}

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

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

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

/* Contact Page Specific */
.contact-split {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}

.contact-left, .contact-right {
    flex: 1;
}

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

.info-block {
    margin-bottom: 2rem;
}

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

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

.info-block a {
    color: var(--secondary-color);
}

.info-block a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.contact-right img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

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

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.map-placeholder p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

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

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

.faq-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
}

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

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

/* Thanks Page Specific */
.thanks-hero {
    padding: 5rem 5%;
    min-height: 70vh;
    background: var(--light-bg);
}

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

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

.thanks-content > p {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

.service-info {
    margin: 2rem 0;
}

.selected-service-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.selected-service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-name {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.thanks-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.additional-info {
    padding: 5rem 5%;
    background: var(--white);
}

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

.info-cards {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

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

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

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
}

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

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

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

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

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

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

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

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

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

.legal-content strong {
    color: var(--text-dark);
}

.legal-content em {
    color: var(--text-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.9rem;
    }

    .hero-split, .intro-split, .story-split, .trust-split,
    .about-split, .team-split, .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse, .trust-split.reverse,
    .team-split.reverse, .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left h1, .page-hero h1, .thanks-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .cards-container, .values-split, .info-cards, .footer-links {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.875rem;
    }
}

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

    .hero-left h1 {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .cta-primary, .cta-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}