/* Reset and 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-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

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

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

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

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

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

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 6rem 4rem 8rem;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Philosophy Section - Reversed Split */
.philosophy-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.content-image-left {
    flex: 1;
    overflow: hidden;
}

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

.content-text-right {
    flex: 1;
    padding: 5rem 8rem 5rem 6rem;
    background-color: #fff;
}

.content-text-right h2 {
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text-right p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.approach-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.testimonial-content-left {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-box {
    max-width: 550px;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.05rem;
    color: #1a5f7a;
    font-weight: 600;
}

.testimonial-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Services Preview Section */
.services-preview-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-preview-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

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

.service-details {
    flex: 1;
    padding: 2rem;
}

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

.service-details p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #2c3e50;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    color: #1a5f7a;
    font-weight: 700;
    margin-top: 1.5rem;
}

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

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

.service-visual img:hover {
    transform: scale(1.05);
}

/* Benefits Split */
.benefits-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.benefits-text-left {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #f8f9fa;
}

.benefits-text-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.benefits-image-right {
    flex: 1;
    overflow: hidden;
}

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

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

.form-container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.form-intro-left {
    flex: 1;
}

.form-intro-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.form-intro-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-highlights p {
    font-size: 1.05rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-highlights strong {
    color: #1a5f7a;
}

.form-card-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-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: 1px solid #d1d5db;
    border-radius: 6px;
    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: #1a5f7a;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Final CTA Split */
.final-cta-split {
    display: flex;
    min-height: 65vh;
    align-items: center;
}

.final-cta-image-left {
    flex: 1;
    overflow: hidden;
}

.final-cta-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-content-right {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #1a5f7a;
    color: #ffffff;
}

.final-cta-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.final-cta-content-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

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

.cta-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.cta-large {
    background-color: #ffffff;
    color: #1a5f7a;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.cta-large:hover {
    background-color: #f0f4f8;
    transform: translateY(-2px);
}

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

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

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

.sticky-cta a:hover {
    background-color: #145270;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 95, 122, 0.5);
}

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

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Page-specific Styles */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.story-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.story-container h2 {
    font-size: 2.75rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
    text-align: center;
}

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

.story-text {
    flex: 1;
}

.story-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Values Split */
.values-split {
    display: flex;
    min-height: 75vh;
    align-items: center;
}

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

.values-image-left {
    flex: 1;
    overflow: hidden;
}

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

.values-content-right {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #ffffff;
}

.values-content-right h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2.5rem;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.team-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.team-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.team-bio {
    flex: 1;
}

.team-bio h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.team-bio p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials-list {
    list-style: none;
    margin-top: 1rem;
}

.credentials-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #2c3e50;
}

.credentials-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Approach Detail Split */
.approach-detail-split {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.approach-content-left {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #f0f4f8;
}

.approach-content-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.approach-content-left h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 2.5rem 0 1.5rem;
}

.approach-content-left p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.pillar-item h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
}

.pillar-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Testimonials Full */
.testimonials-full {
    padding: 6rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
}

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

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* CTA About Split */
.cta-about-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.cta-content-left {
    flex: 1;
    padding: 5rem 6rem;
    background-color: #f8f9fa;
}

.cta-content-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.cta-content-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-image-right {
    flex: 1;
    overflow: hidden;
}

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

/* Services Detail Section */
.services-detail-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

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

.service-info-left,
.service-info-right {
    flex: 1;
    padding: 2rem;
}

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info-left h3,
.service-info-right h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.service-includes {
    margin: 2rem 0;
}

.service-includes h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

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

.service-details-box p {
    margin-bottom: 0.5rem;
}

.service-visual-left,
.service-visual-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.comparison-guide {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.guide-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.guide-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Booking Section */
.booking-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.booking-container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.booking-intro-left {
    flex: 1;
}

.booking-intro-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.booking-intro-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.booking-benefits p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #2c3e50;
}

.booking-form-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-details-left {
    flex: 1;
}

.contact-details-left h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: #ffffff;
}

/* Thanks Section */
.thanks-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-content-left {
    flex: 1;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.thanks-intro {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

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

.step-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-info-box {
    background-color: #f0f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.thanks-info-box h3 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 0.8rem;
}

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

.thanks-visual-right {
    flex: 1;
}

.thanks-visual-right img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-extras {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.thanks-extras h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.thanks-extras p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.extra-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.extra-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Thanks Testimonial */
.thanks-testimonial {
    padding: 4rem 2rem;
    background-color: #1a5f7a;
}

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

.testimonial-container h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.testimonial-box-centered {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 8px;
}

.testimonial-box-centered .testimonial-text {
    color: #ffffff;
}

.testimonial-box-centered .testimonial-author {
    color: rgba(255, 255, 255, 0.9);
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

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

.legal-container h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.8rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #145270;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookies-table th {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table td {
    color: #4a5568;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-split,
    .philosophy-split,
    .testimonial-split,
    .benefits-split,
    .final-cta-split,
    .values-split,
    .approach-detail-split,
    .page-hero-split,
    .cta-about-split {
        flex-direction: column;
    }

    .hero-content-left,
    .content-text-right,
    .testimonial-content-left,
    .benefits-text-left,
    .final-cta-content-right,
    .values-content-right,
    .approach-content-left,
    .cta-content-left {
        padding: 3rem 2rem;
    }

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

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

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

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

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

    .form-container-split,
    .booking-container-split,
    .contact-container-split,
    .thanks-container-split,
    .story-content-split,
    .team-split,
    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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