/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #4a9eba;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5f7a;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #e8f4f8;
    color: #4a9eba;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1;
    background-color: #f5f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 600px;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #4a9eba;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #4a9eba;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #4a9eba;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #4a9eba;
    color: #ffffff;
}

/* Value Proposition Split */
.value-proposition {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.vp-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f9fa;
    padding: 3rem;
}

.vp-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-right h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
}

.vp-right p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eba;
    font-weight: bold;
    font-size: 1.3rem;
}

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

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

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

.section-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a9eba;
    margin: 1.5rem 0;
}

.service-visual {
    flex: 1;
    background-color: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.select-service {
    background-color: #4a9eba;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #2c5f7a;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    background-color: #f5f9fa;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #4a9eba;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c5f7a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: #5a6c7d;
    font-style: normal;
    font-weight: 600;
}

.testimonial-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Section Split */
.form-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

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

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

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

.form-intro p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item span {
    font-size: 1.05rem;
    color: #2c5f7a;
}

.form-content {
    flex: 1;
    background-color: #f5f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #d4ebf3;
    border-radius: 4px;
    font-size: 1rem;
    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: #4a9eba;
}

/* Trust Badges */
.trust-badges {
    background-color: #f5f9fa;
    padding: 4rem 2rem;
}

.badge-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.badge {
    text-align: center;
    flex: 1;
}

.badge h4 {
    margin-top: 1rem;
    color: #2c5f7a;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #d4ebf3;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d4ebf3;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: #d4ebf3;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c5f7a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #a8d5e6;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4a9eba;
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

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

.sticky-cta a {
    display: block;
    background-color: #4a9eba;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(74, 158, 186, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(74, 158, 186, 0.6);
    color: #ffffff;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #4a9eba 0%, #2c5f7a 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.page-hero .hero-content p {
    color: #d4ebf3;
    font-size: 1.3rem;
}

/* About Page Split Sections */
.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
    gap: 3rem;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #f5f9fa;
    border-radius: 8px;
}

.value-icon {
    margin-bottom: 1.5rem;
}

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

.value-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Split */
.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
    gap: 3rem;
    background-color: #f5f9fa;
}

.team-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.team-text h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Certifications */
.certifications {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 3rem;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

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

.cert-item p {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #2c5f7a;
    font-weight: 600;
}

/* CTA About */
.cta-about {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

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

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4a9eba;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #2c5f7a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #4a9eba;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    color: #2c5f7a;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #4a9eba;
    font-size: 1.2rem;
}

.service-detail-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services CTA */
.services-cta {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f9fa;
    border-radius: 8px;
}

.services-cta h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

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

.contact-info-block h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    color: #4a9eba;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-detail a {
    font-weight: 600;
}

.contact-map {
    flex: 1;
    background-color: #e8f4f8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visit Info */
.visit-info {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #f5f9fa;
}

.visit-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 3rem;
}

.transport-options {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.transport-item h3 {
    font-size: 1.4rem;
    color: #2c5f7a;
    margin: 1rem 0 0.5rem;
}

.transport-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
}

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

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #f5f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.thanks-icon {
    margin: 2rem auto;
}

.thanks-section h1 {
    font-size: 3rem;
    color: #4a9eba;
    margin: 2rem 0 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-confirmation {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    color: #2c5f7a;
}

.thanks-next-steps {
    margin: 4rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #2c5f7a;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    background-color: #f5f9fa;
    padding: 2rem;
    border-radius: 8px;
}

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

.step-item h3 {
    font-size: 1.3rem;
    color: #2c5f7a;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.thanks-contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f9fa;
    border-radius: 8px;
}

.thanks-contact-info p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.thanks-contact-info a {
    font-weight: 600;
}

/* Thanks Related Services */
.thanks-related {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.thanks-related h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5f7a;
    margin-bottom: 2rem;
}

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

.related-card {
    flex: 1;
    background-color: #f5f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.related-card h3 {
    font-size: 1.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.related-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.related-card a {
    font-weight: 600;
    color: #4a9eba;
}

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

.legal-container {
    background-color: #ffffff;
    padding: 3rem;
    line-height: 1.8;
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7ab8d1;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f7a;
    margin: 2.5rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8f4f8;
}

.legal-container h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #4a9eba;
    margin: 2rem 0 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: #4a9eba;
    font-weight: 600;
}

.legal-container strong {
    color: #2c5f7a;
}

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

.gdpr-table thead {
    background-color: #e8f4f8;
}

.gdpr-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c5f7a;
    border-bottom: 2px solid #4a9eba;
}

.gdpr-table td {
    padding: 1rem;
    border-bottom: 1px solid #d4ebf3;
    color: #5a6c7d;
}

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

.cookie-table thead {
    background-color: #e8f4f8;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c5f7a;
    border-bottom: 2px solid #4a9eba;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #d4ebf3;
    color: #5a6c7d;
}

.cookie-preferences {
    text-align: center;
    margin: 3rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-proposition,
    .service-card-split,
    .testimonial-split,
    .form-container-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .values-grid,
    .badge-grid,
    .transport-options,
    .steps-grid,
    .related-services {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2,
    .vp-right h2,
    .about-text h2,
    .values-section h2,
    .team-text h2 {
        font-size: 2rem;
    }

    .service-price,
    .price-tag {
        font-size: 1.5rem;
    }

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .thanks-cta-group {
        flex-direction: column;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-menu a {
        padding: 0.4rem;
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
