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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Split-Screen Navigation */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f8d;
}

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

.nav-right a {
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-right a:hover {
    color: #2c5f8d;
}

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

.nav-right a:hover::after {
    width: 100%;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f8d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-primary:hover {
    background-color: #1e4464;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3);
}

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

.cta-text {
    color: #2c5f8d;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-text:hover {
    color: #1e4464;
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    padding: 3rem 5%;
    background-color: #f8f9fa;
}

.split-layout {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.indicator-card {
    text-align: center;
    padding: 1.5rem;
}

.indicator-card h3 {
    font-size: 2.5rem;
    color: #2c5f8d;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.indicator-card p {
    color: #666;
    font-size: 1.1rem;
}

/* Split Content Sections */
.intro-section,
.problem-section,
.testimonials-split,
.benefits-section,
.about-story,
.mission-split,
.approach-section {
    padding: 5rem 0;
}

.split-content {
    display: flex;
    align-items: center;
    min-height: 500px;
}

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

.content-left,
.content-right {
    flex: 1;
    padding: 3rem 5%;
}

.content-left h2,
.content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #1a1a1a;
    font-weight: 700;
}

.content-left p,
.content-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.content-left img,
.content-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.dark-bg {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 5%;
}

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: #ffffff;
}

.dark-bg p,
.dark-bg li {
    color: #e0e0e0;
}

/* Problem Section Lists */
.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.15rem;
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Services Section */
.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.service-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid #2c5f8d;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

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

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

.btn-select:hover {
    background-color: #1e4464;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5f8d;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c5f8d;
}

/* Process Section */
.process-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
    padding: 2rem;
}

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

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

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.benefit-item p {
    font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4464 100%);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.contact-form .form-group {
    margin-bottom: 1.8rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5f8d;
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

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

.btn-submit:hover {
    background-color: #1e4464;
    transform: translateY(-2px);
}

/* Final Trust Section */
.final-trust {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* Footer */
.footer-split {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    color: #b0bec5;
    line-height: 1.6;
}

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

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

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

.footer-bottom {
    border-top: 1px solid #455a64;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #b0bec5;
}

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

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

.sticky-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 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: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

/* Page Hero */
.page-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4464 100%);
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

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

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Approach List */
.approach-list {
    list-style: none;
    margin-bottom: 2rem;
}

.approach-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: bold;
    font-size: 1.4rem;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4464 100%);
    text-align: center;
}

.cta-section .cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section .cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Services Detailed */
.services-intro {
    padding: 3rem 5%;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.15rem;
    color: #666;
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail {
    margin-bottom: 0;
}

.service-detail .split-content {
    min-height: 600px;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 800;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

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

.benefit-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.featured-service {
    background-color: #f8f9fa;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background-color: #2c5f8d;
    color: #ffffff;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.comparison-cell.label {
    font-weight: 600;
    text-align: left;
    background-color: #f8f9fa;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 5%;
    background-color: #f0f8ff;
    text-align: center;
}

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.guarantee-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

/* Contact Page */
.contact-content {
    padding: 3rem 0;
}

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

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

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c5f8d;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.info-item a {
    color: #2c5f8d;
    text-decoration: underline;
}

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 141, 0.9);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Reasons */
.contact-reasons {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

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

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

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

.reason-card p {
    color: #666;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

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

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact CTA */
.contact-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2c5f8d 0%, #1e4464 100%);
    text-align: center;
}

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

.contact-cta .cta-content p {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    text-align: center;
    color: #ffffff;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.3rem;
    color: #e0f7e9;
}

/* Thanks Info */
.thanks-info {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.info-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    line-height: 1.7;
}

.selected-service {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.selected-service p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Thanks Resources */
.thanks-resources {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.resources-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.resources-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resources-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.resource-card p {
    color: #666;
}

/* Thanks Contact */
.thanks-contact {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-box p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.email-link {
    font-size: 1.3rem;
    color: #2c5f8d;
    font-weight: 600;
    display: inline-block;
    margin: 1.5rem 0;
    text-decoration: underline;
}

.office-hours {
    font-size: 0.95rem;
    color: #999;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
    background-color: #ffffff;
}

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

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

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c5f8d;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.legal-container a {
    color: #2c5f8d;
    text-decoration: underline;
}

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

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

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

.cookie-table th {
    background-color: #2c5f8d;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .team-member {
        flex: 1 1 calc(50% - 2.5rem);
    }
}

@media (max-width: 768px) {
    .split-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
        padding: 3rem 5%;
    }

    .hero-right {
        height: 400px;
    }

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

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

    .content-left,
    .content-right {
        padding: 2rem 5%;
    }

    .content-left img,
    .content-right img {
        height: 350px;
    }

    .service-card,
    .value-card,
    .team-member {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

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

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

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

    .section-header h2,
    .process-section h2,
    .values-section h2,
    .team-section h2,
    .stats-section h2 {
        font-size: 2.2rem;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 600px;
    }

    .next-steps {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-left p {
        font-size: 1.1rem;
    }

    .cta-primary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

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

    .price {
        font-size: 1.6rem;
    }

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

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .legal-container h1 {
        font-size: 2.2rem;
    }
}