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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Sections - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem 4rem 0;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Value Split Section */
.value-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
}

.split-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

/* Services Grid Section */
.services-grid-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #6b7280;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.btn-service-select {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #1d4ed8;
}

/* Stats Split Section */
.stats-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.split-visual-dark {
    flex: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.stats-overlay {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #dbeafe;
}

.split-content-dark {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content-dark p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    gap: 3rem;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.approach-step p {
    color: #6b7280;
    line-height: 1.8;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
    padding-left: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-size: 1.125rem;
    color: #1a1a1a;
}

.testimonial-author span {
    color: #6b7280;
}

/* CTA Split Section */
.cta-split-section {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
    gap: 3rem;
    align-items: center;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-left p {
    font-size: 1.125rem;
    color: #6b7280;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large,
.btn-secondary-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary,
.btn-large {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover,
.btn-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary,
.btn-secondary-large {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover,
.btn-secondary-large:hover {
    background: #2563eb;
    color: #ffffff;
}

.btn-large,
.btn-secondary-large {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

/* Form Section */
.form-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    background: #f9fafb;
    padding: 4rem;
    border-radius: 12px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.price-display {
    font-size: 1.25rem;
    color: #2563eb;
}

.contact-form {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    flex: 1;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.btn-cancel {
    padding: 1rem 2rem;
    background: transparent;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    color: #9ca3af;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 4rem 2rem;
    gap: 4rem;
}

.page-tag {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-hero-split h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.page-hero-split p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Story Split */
.story-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

/* Values Section */
.values-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
}

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

.value-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* Team Split */
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

/* Mission Split */
.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.split-content-wide {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content-wide p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.timeline-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.8;
}

/* Services Detail Section */
.services-detail-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-price-large span {
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b7280;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

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

.service-detail-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Comparison Section */
.comparison-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.comparison-grid {
    display: flex;
    gap: 2rem;
}

.comparison-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.comparison-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.comparison-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

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

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.contact-block p {
    color: #4b5563;
    line-height: 1.8;
}

.contact-address {
    font-style: normal;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.contact-info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-details p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

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

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    text-align: center;
}

.step-card {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.step-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

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

.thanks-contact-info {
    color: #6b7280;
}

.thanks-contact-info a {
    color: #2563eb;
}

/* Legal Page */
.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    color: #6b7280;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

.legal-container li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-container ol li {
    list-style: decimal;
}

.legal-container a {
    color: #2563eb;
}

.legal-container a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4b5563;
}

.cookie-settings {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.cookie-settings p {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .stats-split,
    .testimonial-split,
    .cta-split-section,
    .page-hero-split,
    .story-split,
    .team-split,
    .mission-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .testimonial-split.reverse,
    .mission-split.reverse,
    .service-detail-card.reverse .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .split-visual,
    .cta-left,
    .cta-right {
        padding: 2rem 0;
    }

    .approach-grid,
    .comparison-grid,
    .next-steps-grid {
        flex-direction: column;
    }

    .hero-left h1,
    .page-hero-split h1,
    .thanks-hero h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .split-content-dark h2,
    .split-content-wide h2 {
        font-size: 2rem;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .section-header-center h2,
    .approach-header h2,
    .comparison-section h2,
    .faq-section h2,
    .timeline-section h2,
    .map-section h2 {
        font-size: 2rem;
    }

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

    .form-container-split {
        flex-direction: column;
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        min-width: auto;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.75rem;
    }

    .service-card {
        min-width: 100%;
    }

    .btn-large,
    .btn-secondary-large {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

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