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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a:hover {
    color: #1a5490;
}

.nav-cta {
    background: #1a5490;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #0d3a6b;
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 70px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-btn {
    background: white;
    color: #1a5490;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Narrow Content Sections */
.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-narrative {
    background: #f8f9fa;
}

.intro-lead {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Visual Split Section */
.visual-split {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.inline-cta {
    color: #1a5490;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.inline-cta:hover {
    transform: translateX(5px);
}

/* Container Styles */
.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Problem Reveal Section */
.problem-reveal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
}

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

.problem-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Image Showcase */
.image-showcase {
    padding: 4rem 0;
}

.showcase-large {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-large img {
    width: 100%;
    height: auto;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: white;
}

.showcase-caption h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.showcase-caption p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Insight Section */
.insight-section {
    background: #2c3e50;
    color: white;
}

.insight-intro {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.insight-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Visual */
.testimonial-visual {
    padding: 5rem 2rem;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    max-width: 800px;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5490;
}

/* Route Preview Cards */
.centered-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.route-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.route-card {
    flex: 1 1 350px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.route-image {
    height: 250px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-info {
    padding: 2rem;
}

.route-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.route-info p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.route-link {
    color: #1a5490;
    font-weight: 600;
    transition: color 0.3s ease;
}

.route-link:hover {
    color: #0d3a6b;
}

.centered-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Buttons */
.btn-primary {
    background: #1a5490;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #4a5568;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
}

.btn-outline {
    background: transparent;
    color: #1a5490;
    border: 2px solid #1a5490;
    padding: 0.9rem 2.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #1a5490;
    color: white;
}

/* Trust Builder */
.trust-builder {
    background: white;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 3rem;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Benefits Reveal */
.benefits-reveal {
    background: #f8f9fa;
}

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

.benefits-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #4a5568;
    padding-left: 2rem;
    position: relative;
}

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

/* Urgency Visual */
.urgency-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency-container {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.urgency-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urgency-overlay {
    position: relative;
    z-index: 1;
    background: rgba(26, 84, 144, 0.9);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
    border-radius: 10px;
}

.urgency-overlay h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.urgency-overlay p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-urgency {
    background: white;
    color: #1a5490;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-urgency:hover {
    transform: scale(1.05);
}

/* Testimonial Cluster */
.testimonial-cluster {
    background: white;
}

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

.testimonial-simple {
    flex: 1 1 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #1a5490;
    border-radius: 5px;
}

.testimonial-simple p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #4a5568;
}

.testimonial-simple cite {
    font-style: normal;
    font-weight: 600;
    color: #1a5490;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    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: #1a5490;
}

.btn-submit {
    background: #1a5490;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background: #0d3a6b;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.sticky-btn {
    background: #1a5490;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(26, 84, 144, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 84, 144, 0.5);
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #1a5490;
    color: white;
}

.btn-accept:hover {
    background: #0d3a6b;
}

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

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

/* Page-Specific Styles */

/* Page Hero */
.page-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Services Page */
.services-intro {
    background: white;
}

.services-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.service-detailed {
    padding: 5rem 2rem;
    background: white;
}

.service-detailed.alt-layout {
    background: #f8f9fa;
}

.service-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

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

.service-details {
    flex: 1;
}

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

.service-duration {
    font-size: 1rem;
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-details > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

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

.service-features li {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1a5490;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
}

.pricing-includes {
    background: #f8f9fa;
}

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

.include-item {
    flex: 1 1 300px;
}

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

.include-item p {
    color: #4a5568;
}

/* About Page */
.about-hero {
    margin-top: 70px;
    position: relative;
}

.about-hero-image {
    height: 400px;
    overflow: hidden;
}

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

.about-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem 2rem;
    color: white;
    text-align: center;
}

.about-hero-text h1 {
    font-size: 3rem;
}

.about-story {
    background: white;
}

.story-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 2rem;
}

.founders-section {
    background: #f8f9fa;
}

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

.founder-card {
    flex: 0 1 400px;
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.founder-role {
    color: #1a5490;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-card p {
    color: #4a5568;
    text-align: left;
}

.philosophy-section {
    background: white;
}

.approach-visual {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.approach-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a5490;
}

.approach-point p {
    color: #4a5568;
}

.values-section {
    background: white;
}

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

.value-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.value-card p {
    color: #4a5568;
}

.team-expansion {
    background: #f8f9fa;
}

.numbers-section {
    background: white;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.number-stat {
    text-align: center;
    flex: 1 1 200px;
}

.stat-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.closing-section {
    background: #f8f9fa;
}

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

.cta-centered {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
    padding: 4rem 2rem;
}

.contact-header {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
}

.contact-main {
    padding: 5rem 2rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1.5;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 10px;
}

.visual-caption {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #1a5490;
}

.visual-caption p {
    font-style: italic;
    color: #4a5568;
    margin: 0;
}

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

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #1a5490;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-detail a {
    color: #1a5490;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 0.5rem;
}

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

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

.faq-item p {
    color: #4a5568;
}

.quick-start {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.quick-start-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quick-start-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.quick-start-content p {
    margin-bottom: 2rem;
    color: #4a5568;
}

/* Thanks Page */
.thanks-hero {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a5490 0%, #0d3a6b 100%);
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.thanks-content {
    flex: 1.5;
    background: white;
    padding: 3rem;
    border-radius: 15px;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

.step-content p {
    color: #4a5568;
    font-size: 0.95rem;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.thanks-service h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.selected-journey {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5490;
}

.thanks-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-bottom: 2rem;
}

.thanks-note p {
    margin: 0;
    color: #856404;
}

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

.thanks-visual {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.visual-overlay p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.thanks-extra {
    background: white;
}

.extra-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.extra-card {
    flex: 1 1 300px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.extra-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.extra-card p {
    color: #4a5568;
}

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

/* Legal Pages */
.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: white;
}

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

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

.legal-updated {
    color: #718096;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #1a5490;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .visual-split,
    .service-layout,
    .approach-container,
    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .service-layout.alt-layout {
        flex-direction: column-reverse;
    }

    .split-content,
    .service-details {
        padding: 3rem 2rem;
    }

    .route-cards,
    .problem-grid,
    .includes-grid,
    .values-grid,
    .extra-content {
        flex-direction: column;
    }

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

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-outline {
        width: 100%;
        text-align: center;
    }
}

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

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

    .section-heading,
    .centered-heading {
        font-size: 1.8rem;
    }

    .narrow-content,
    .container-standard {
        padding: 3rem 1.5rem;
    }
}