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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f8d;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

.nav-links a:hover {
    color: #2c5f8d;
}

.hero-split {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

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

.split-text {
    flex: 1;
}

.split-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 800;
}

.split-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #234a6f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5f8d;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f8d;
    color: #fff;
}

.info-section {
    padding: 80px 24px;
}

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

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

.info-image {
    flex: 1;
}

.info-image img {
    border-radius: 12px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.info-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.value-proposition {
    background-color: #2c5f8d;
    color: #fff;
    padding: 80px 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-narrow.center {
    text-align: center;
}

.value-proposition h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.value-proposition p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.services-grid {
    padding: 80px 24px;
    background-color: #fafafa;
}

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

.section-header h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    width: calc(33.333% - 22px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 20px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 24px 16px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f8d;
    margin: 16px 24px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234a6f;
}

.trust-section {
    padding: 80px 24px;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: #f5f7fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c5f8d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.testimonials {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #2c5f8d;
    font-weight: 600;
}

.how-it-works {
    padding: 80px 24px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.booking-form-section {
    background-color: #fafafa;
    padding: 80px 24px;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #2c5f8d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f8d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a6f;
}

.final-cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3d5c 100%);
    color: #fff;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.disclaimer-section {
    background-color: #f9f9f9;
    padding: 40px 24px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 24px 24px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

.footer-col a {
    font-size: 14px;
    color: #aaa;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

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

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

.cookie-btn.accept {
    background-color: #2c5f8d;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3d5c 100%);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 24px;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 12px;
}

.values-section {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.team-intro {
    padding: 80px 24px;
}

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

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

.team-image {
    flex: 1;
}

.team-image img {
    border-radius: 12px;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.fleet-care {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.fleet-care h2 {
    text-align: center;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

.fleet-care p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.sustainability {
    padding: 80px 24px;
}

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

.sustainability-text {
    flex: 1;
}

.sustainability-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.sustainability-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.sustainability-image {
    flex: 1;
}

.sustainability-image img {
    border-radius: 12px;
}

.cta-about {
    background-color: #2c5f8d;
    color: #fff;
    padding: 80px 24px;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detailed {
    padding: 60px 24px;
}

.service-detail {
    margin-bottom: 80px;
}

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

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

.detail-image {
    flex: 1;
}

.detail-image img {
    border-radius: 12px;
}

.detail-info {
    flex: 1;
}

.detail-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 24px;
}

.detail-info h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.detail-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.specs-list {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.specs-list li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.extras-section {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.extras-section h2 {
    text-align: center;
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.extras-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.extra-item {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.extra-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.extra-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.booking-cta-services {
    padding: 80px 24px;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3d5c 100%);
    color: #fff;
}

.booking-cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.booking-cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 24px;
}

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

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

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

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

.contact-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.note {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

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

.contact-image-block img {
    border-radius: 12px;
    width: 100%;
}

.image-caption {
    margin-top: 16px;
}

.image-caption p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.how-to-reach {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.how-to-reach h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 48px;
    font-weight: 700;
}

.transport-options {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.transport-item {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.transport-item h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.transport-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-contact {
    padding: 80px 24px;
}

.faq-contact h2 {
    text-align: center;
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 48px;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.contact-cta {
    background-color: #f5f7fa;
    padding: 80px 24px;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: #2c5f8d;
}

.thanks-container {
    padding: 100px 24px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.service-info {
    background-color: #f5f7fa;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
}

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

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

.step-icon {
    width: 48px;
    height: 48px;
    background-color: #2c5f8d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5f8d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a6f;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c5f8d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f8d;
    color: #fff;
}

.thanks-note {
    background-color: #fff4e6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.thanks-note p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

.legal-page {
    padding: 60px 24px;
    background-color: #fff;
}

.legal-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f8d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #234a6f;
}

.legal-date {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .split-content,
    .info-split,
    .trust-split,
    .form-split,
    .story-split,
    .team-split,
    .sustainability-split,
    .detail-split,
    .contact-layout {
        flex-direction: column;
    }

    .split-text h1,
    .page-header h1 {
        font-size: 32px;
    }

    .section-header h2,
    .testimonials h2,
    .how-it-works h2,
    .values-section h2,
    .extras-section h2 {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}