/* 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;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    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: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: #3498db;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #555;
}

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

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 70vh;
    margin-top: 70px;
}

.page-hero-split .hero-left {
    background-color: #ecf0f1;
}

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

/* Alternating Sections */
.alternating-section {
    padding: 6rem 0;
}

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

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

.split-content {
    flex: 1;
    padding: 2rem;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Insight Block */
.insight-block {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.insight-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

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

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Testimonial Split */
.testimonial-split {
    padding: 6rem 0;
}

.testimonial-split blockquote {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-split blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.testimonial-split cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #7f8c8d;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background-color: #ecf0f1;
}

.services-preview h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
}

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

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

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

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1rem;
}

.service-image {
    flex: 1;
    min-height: 300px;
}

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

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

/* Story Section */
.story-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* Benefits Asymmetric */
.benefits-asymmetric {
    padding: 6rem 0;
}

.benefits-asymmetric h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.benefit-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.benefit-item.offset-right {
    margin-left: 15%;
}

.benefit-item.offset-left {
    margin-right: 15%;
}

.benefit-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

/* Final Testimonial */
.final-testimonial {
    padding: 6rem 0;
    background-color: #2c3e50;
}

.quote-large {
    padding: 3rem;
    background-color: transparent;
    border: none;
}

.quote-large p {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.quote-large cite {
    font-size: 1.1rem;
    color: #ecf0f1;
}

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

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

.form-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

/* Urgent CTA */
.urgent-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.urgent-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.urgent-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.urgent-cta .cta-primary {
    background-color: #ffffff;
    color: #667eea;
}

.urgent-cta .cta-primary:hover {
    background-color: #f0f0f0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #229954;
}

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

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

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

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

.sticky-cta a:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

/* About Page Specific */
.story-alternating {
    padding: 6rem 0;
    background-color: #ffffff;
}

.philosophy-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
    color: #555;
}

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

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

.philosophy-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-split-section {
    padding: 6rem 0;
}

.values-section {
    padding: 6rem 0;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.experience-numbers {
    padding: 6rem 0;
}

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

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

.number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.number-item p {
    font-size: 1.1rem;
    color: #555;
}

.cta-about {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.cta-about h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Services Page Specific */
.services-hero-split {
    display: flex;
    min-height: 70vh;
    margin-top: 70px;
}

.services-hero-split .hero-left {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-hero-split .hero-left h1 {
    color: #ffffff;
}

.services-hero-split .hero-left p {
    color: #f0f0f0;
}

.service-detail-split {
    padding: 6rem 0;
}

.service-detail-split:nth-child(odd) {
    background-color: #f8f9fa;
}

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

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.additional-services {
    padding: 6rem 0;
    background-color: #ffffff;
}

.additional-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

.addon-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    margin-top: 1rem;
}

.pricing-notes-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.pricing-notes-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.pricing-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.services-cta-split {
    padding: 6rem 0;
    background-color: #2c3e50;
}

.cta-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-left p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.cta-right {
    flex: 1;
    text-align: center;
}

.large-cta {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #bdc3c7;
}

/* Contact Page Specific */
.contact-hero-split {
    display: flex;
    min-height: 70vh;
    margin-top: 70px;
}

.contact-hero-split .hero-left {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-hero-split .hero-left h1 {
    color: #ffffff;
}

.contact-hero-split .hero-left p {
    color: #ffffff;
}

.contact-info-split {
    padding: 6rem 0;
}

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

.contact-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

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

.contact-options {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-options h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

.faq-split {
    padding: 6rem 0;
}

.faq-split h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

.contact-cta {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.contact-cta h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 8rem 0 4rem;
    margin-top: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.thanks-details {
    padding: 6rem 0;
}

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

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

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

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

.thanks-service-info {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.thanks-service-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.service-confirmation {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    color: #555;
}

.thanks-reassurance {
    padding: 6rem 0;
}

.thanks-reassurance h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.reassurance-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.reassurance-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.reassurance-card h3 a {
    color: #3498db;
}

.thanks-final-note {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.thanks-final-note h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-final-note p {
    font-size: 1.1rem;
    color: #555;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.updated-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #555;
}

.legal-page strong {
    color: #2c3e50;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: #34495e;
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .page-hero-split,
    .services-hero-split,
    .contact-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

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

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

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

    .split-container.reverse {
        flex-direction: column;
    }

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

    .form-split {
        flex-direction: column;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .split-content h2 {
        font-size: 2rem;
    }

    .insight-grid,
    .philosophy-grid,
    .values-split-grid,
    .options-grid,
    .addon-grid,
    .reassurance-grid {
        flex-direction: column;
    }

    .benefit-item.offset-right,
    .benefit-item.offset-left {
        margin: 0;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .numbers-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

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

    .cta-primary,
    .cta-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}