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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    font-size: 16px;
}

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

a {
    color: #1e3a8a;
    text-decoration: none;
}

a:hover {
    color: #f97316;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
}

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

/* Buttons */
.cta-primary, .btn-primary, .btn-primary-large {
    display: inline-block;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover, .btn-primary:hover, .btn-primary-large:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.btn-secondary, .btn-secondary-large, .btn-cta-secondary {
    display: inline-block;
    background-color: #f97316;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary:hover, .btn-secondary-large:hover, .btn-cta-secondary:hover {
    background-color: #ea580c;
    color: #ffffff;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1e3a8a;
    padding: 16px 32px;
    border: 2px solid #1e3a8a;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #1e3a8a;
    color: #ffffff;
}

/* Intro Section - Split Layout */
.intro-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #e2e8f0;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
}

/* Features Section - Asymmetric Layout */
.features-asymmetric {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-container h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 50px;
    text-align: center;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.feature-large {
    flex: 1 1 100%;
    display: flex;
    gap: 40px;
}

.feature-large img {
    width: 50%;
    border-radius: 8px;
}

.feature-offset {
    margin-top: 40px;
}

.feature-card h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 17px;
    color: #64748b;
}

/* Services Preview - Split Layout */
.services-preview {
    padding: 100px 30px;
    background-color: #ffffff;
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 20px;
    color: #64748b;
}

.services-split {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 40px;
}

.service-highlight {
    flex: 1.2;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.service-highlight img {
    width: 100%;
    height: 300px;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 24px;
}

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
}

.service-item h4 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.price-tag, .price-display {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 20px 0;
}

.btn-select-service {
    background-color: #f97316;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 15px;
}

.btn-select-service:hover {
    background-color: #ea580c;
}

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

/* Trust Section */
.trust-section {
    padding: 100px 30px;
    background-color: #1e293b;
    color: #ffffff;
}

.trust-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonials-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    min-width: 300px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.testimonial cite {
    font-style: normal;
    color: #f97316;
    font-weight: 600;
}

/* Form Section - Split Layout */
.form-section {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    color: #1e293b;
    margin-bottom: 24px;
}

.form-intro p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 40px;
}

.form-intro img {
    border-radius: 8px;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.btn-submit {
    width: 100%;
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* Final CTA */
.final-cta {
    padding: 100px 30px;
    background-color: #1e3a8a;
    color: #ffffff;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #e2e8f0;
}

.btn-cta-large {
    display: inline-block;
    background-color: #f97316;
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-cta-large:hover {
    background-color: #ea580c;
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 60px 30px 30px;
}

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

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

.footer-col h3, .footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p, .footer-col a {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
    color: #64748b;
    margin-bottom: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #fbbf24;
}

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

.btn-cookie-accept, .btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-cookie-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #475569;
}

/* Services Page */
.page-hero {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 22px;
    color: #e2e8f0;
}

.services-detailed {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.services-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-split {
    display: flex;
    gap: 50px;
}

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

.service-details {
    flex: 1;
    padding: 50px;
}

.service-details h2 {
    font-size: 32px;
    color: #1e293b;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

.service-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-card-compact {
    padding: 50px;
}

.service-card-compact h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-card-compact p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 24px;
}

.feature-list {
    margin: 24px 0;
    padding-left: 20px;
}

.feature-list li {
    list-style: disc;
    color: #64748b;
    margin-bottom: 10px;
    font-size: 16px;
}

.full-width, .full-width-alt {
    width: 100%;
}

.process-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #64748b;
}

.cta-services {
    padding: 80px 30px;
    background-color: #f8fafc;
}

.cta-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #1e3a8a;
    padding: 60px 40px;
    border-radius: 8px;
    color: #ffffff;
}

.cta-content-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e2e8f0;
}

/* About Page */
.about-hero {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.about-hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 20px;
    color: #475569;
}

.about-image {
    flex: 1;
    background-color: #e2e8f0;
}

.about-image img {
    border-radius: 8px;
}

.story-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.story-container h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.story-content p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.8;
}

.values-section {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.values-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-card.highlight {
    background-color: #1e3a8a;
    color: #ffffff;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-card.highlight h3 {
    color: #ffffff;
}

.value-card p {
    font-size: 17px;
    color: #64748b;
}

.value-card.highlight p {
    color: #e2e8f0;
}

.team-intro {
    padding: 100px 30px;
    background-color: #ffffff;
}

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

.team-container h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 30px;
}

.team-container p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.8;
}

.approach-section {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    flex: 1;
    background-color: #e2e8f0;
}

.approach-visual img {
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-section {
    padding: 100px 30px;
    background-color: #1e293b;
    color: #ffffff;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #cbd5e1;
}

.cta-about {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.cta-box-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-box-centered h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.cta-box-centered p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

/* Contact Page */
.contact-header {
    padding: 80px 30px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.contact-header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-header-content p {
    font-size: 20px;
    color: #e2e8f0;
}

.contact-main {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 40px;
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

.email-display {
    color: #1e293b;
    font-weight: 600;
    cursor: default;
}

.info-note {
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    margin-top: 12px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
}

.map-overlay p {
    font-size: 18px;
    color: #475569;
}

.contact-additional {
    padding: 100px 30px;
    background-color: #ffffff;
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-container h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 50px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 30px;
    background-color: #f8fafc;
}

.cta-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 16px;
}

.cta-simple p {
    font-size: 18px;
    color: #475569;
    margin-bottom: 32px;
}

/* Thanks Page */
.thanks-main {
    padding: 100px 30px;
    background-color: #f8fafc;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 12px;
}

.thanks-next {
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 30px;
}

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step-item {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 6px;
    font-size: 16px;
    color: #475569;
}

.step-item strong {
    color: #1e3a8a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.thanks-info p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 8px;
}

.hours-info {
    font-size: 14px;
    color: #94a3b8;
}

/* Legal Pages */
.legal-page {
    padding: 100px 30px;
    background-color: #f8fafc;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1e293b;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    list-style: disc;
    font-size: 16px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

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

.cookie-table td {
    color: #475569;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split, .intro-wrapper, .services-split, .form-container-split,
    .about-hero-split, .approach-wrapper, .contact-layout {
        flex-direction: column;
    }

    .service-split.reverse {
        flex-direction: column;
    }

    .feature-large {
        flex-direction: column;
    }

    .feature-large img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .stats-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

    .testimonials-flex {
        flex-direction: column;
    }

    .footer-content {
        gap: 40px;
    }

    .legal-container {
        padding: 40px 24px;
    }

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