/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   NAVIGATION
   ======================================== */

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a5490;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a5490;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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-actions {
    display: flex;
    gap: 1rem;
}

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

.btn-accept {
    background: #28a745;
    color: #ffffff;
}

.btn-accept:hover {
    background: #218838;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

/* ========================================
   SPLIT SCREEN LAYOUTS (ARCHETYPE)
   ======================================== */

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

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

.split-content,
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 968px) {
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 600px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
}

.hero-right {
    background: #dee2e6;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .hero-right {
        min-height: 400px;
    }
}

/* ========================================
   BUTTONS & CTAs
   ======================================== */

.cta-primary,
.cta-secondary,
.btn-service,
.btn-service-action,
.btn-submit,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-primary,
.btn-primary,
.btn-service,
.btn-service-action,
.btn-submit {
    background: #1a5490;
    color: #ffffff;
}

.cta-primary:hover,
.btn-primary:hover,
.btn-service:hover,
.btn-service-action:hover,
.btn-submit:hover {
    background: #134073;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.cta-secondary,
.btn-secondary {
    background: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: #1a5490;
    color: #ffffff;
}

.cta-primary.large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.cta-link {
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.cta-link:hover {
    border-bottom-color: #1a5490;
}

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

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 5rem 2rem;
}

.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: #2c3e50;
    color: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #1a5490 0%, #134073 100%);
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: inherit;
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: inherit;
}

.section-intro.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #1a5490;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

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

.centered {
    text-align: center;
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* ========================================
   STATS & NUMBERS
   ======================================== */

.stats-grid {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
}

.stats-large-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    padding: 2rem;
}

.stat-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label-large {
    font-size: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }
}

/* ========================================
   SERVICES
   ======================================== */

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 4rem 0;
}

.service-card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
}

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

.service-info p {
    margin-bottom: 1.5rem;
    color: #495057;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
    margin: 1.5rem 0;
}

@media (max-width: 968px) {
    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .service-visual {
        min-height: 250px;
        width: 100%;
    }

    .service-info {
        padding: 2rem;
    }
}

/* Services Detailed Page */

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-block {
    padding: 4rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.service-block:last-child {
    border-bottom: none;
}

.service-content-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
}

.service-details {
    flex: 1.2;
}

.service-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #e9ecef;
    color: #1a5490;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-details h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

.service-details h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

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

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
    color: #495057;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.pricing-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 968px) {
    .service-content-split,
    .service-block.reverse .service-content-split {
        flex-direction: column;
    }

    .service-block {
        padding: 3rem 1rem;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial {
    font-style: italic;
    color: #495057;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #1a5490;
    margin: 2rem 0;
}

.testimonials-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.testimonial-author strong {
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ========================================
   PROCESS / STEPS
   ======================================== */

.process-split {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.process-step h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-step p {
    color: #495057;
}

@media (max-width: 968px) {
    .process-split {
        flex-direction: column;
    }
}

/* ========================================
   FORM SECTION
   ======================================== */

.form-section {
    background: linear-gradient(135deg, #1a5490 0%, #134073 100%);
    padding: 5rem 2rem;
}

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

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

.form-left {
    color: #ffffff;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.form-benefits li {
    padding: 0.7rem 0;
    font-size: 1.05rem;
}

.form-right {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .form-split {
        flex-direction: column;
    }

    .form-right {
        padding: 2rem;
    }
}

/* ========================================
   LISTS & REASONS
   ======================================== */

.reasons-list {
    list-style: none;
}

.reasons-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    color: inherit;
}

.reasons-list li:last-child {
    border-bottom: none;
}

.reasons-list strong {
    color: inherit;
}

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

.reason-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reason-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #495057;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-hero {
    padding: 5rem 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.value-item {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.value-icon {
    flex: 1;
}

.value-icon img {
    width: 100%;
    border-radius: 8px;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-content p {
    color: #495057;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .value-item,
    .value-item.reverse {
        flex-direction: column;
    }
}

.team-section {
    padding: 5rem 2rem;
}

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

.team-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
}

.team-card p {
    padding: 0 1.5rem 1.5rem;
    color: #495057;
}

@media (max-width: 968px) {
    .team-grid {
        flex-direction: column;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-content {
    padding: 3rem 2rem;
}

.contact-info-block {
    flex: 1;
    padding-right: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.contact-item p,
.contact-item a {
    color: #495057;
}

.contact-item a:hover {
    color: #1a5490;
}

.contact-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.document-list,
.transport-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.document-list li,
.transport-list li {
    color: #495057;
    padding: 0.3rem 0;
}

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

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.faq-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.7rem;
}

.faq-item p {
    color: #495057;
}

.alternative-contact {
    padding: 4rem 2rem;
}

.alt-contact-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-contact-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.alt-contact-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.alt-contact-card p {
    color: #495057;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .alt-contact-grid {
        flex-direction: column;
    }
}

/* ========================================
   THANKS PAGE
   ======================================== */

.thanks-section {
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
}

.service-selected {
    background: #e7f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5490;
    margin: 0.5rem 0;
}

.service-note {
    font-size: 0.95rem;
    color: #6c757d;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.timeline-step {
    display: flex;
    gap: 1.5rem;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #495057;
}

.thanks-important {
    background: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 3rem 0;
    text-align: left;
}

.thanks-important h3 {
    font-size: 1.3rem;
    color: #856404;
    margin-bottom: 1rem;
}

.thanks-important ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.thanks-important li {
    color: #856404;
    padding: 0.3rem 0;
}

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

.thanks-testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.thanks-resources {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

.resource-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.resource-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #495057;
    margin-bottom: 1rem;
}

.resource-card a {
    color: #1a5490;
    font-weight: 600;
}

@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

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

/* ========================================
   LEGAL PAGES
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #134073 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.2rem;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-intro {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 3rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 2rem 0 0.7rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #495057;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin: 0.5rem 0;
    color: #495057;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #134073;
}

.legal-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.rgpd-table,
.cookies-table {
    margin: 2rem 0;
}

.rgpd-row,
.cookie-row {
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem 0;
}

.rgpd-row:last-child,
.cookie-row:last-child {
    border-bottom: none;
}

.rgpd-label,
.cookie-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.rgpd-value,
.cookie-details {
    color: #495057;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   STICKY CTA
   ======================================== */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a5490;
    color: #ffffff;
    padding: 1rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.sticky-cta.show {
    display: flex;
}

.sticky-cta span {
    font-weight: 600;
}

.btn-sticky {
    padding: 0.7rem 1.8rem;
    background: #ffffff;
    color: #1a5490;
    font-weight: 600;
    border-radius: 4px;
}

.btn-sticky:hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .sticky-cta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 2rem;
    }

    .btn-sticky {
        width: 100%;
    }
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.cta-final {
    text-align: center;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 968px) {
    section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

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