/* 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 {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    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: #ffffff;
    color: #2c3e50;
}

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

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

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

.hero-left {
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-urgent,
.cta-final,
.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.cta-urgent {
    background-color: #e74c3c;
    color: #ffffff;
}

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

.cta-final {
    background-color: #27ae60;
    color: #ffffff;
}

.cta-final:hover {
    background-color: #229954;
}

.cta-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 0.8rem 2rem;
}

.cta-service:hover {
    background-color: #2980b9;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    flex-direction: column;
}

.trust-left,
.trust-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

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

.trust-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.link-inline {
    color: #3498db;
    font-weight: 600;
    font-size: 1.05rem;
}

.link-inline:hover {
    text-decoration: underline;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.05rem;
}

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

/* Process Split Section */
.process-split {
    display: flex;
    flex-direction: column;
}

.process-left,
.process-right {
    flex: 1;
    padding: 3rem 2rem;
}

.process-left {
    background-color: #ecf0f1;
}

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

.step {
    margin-bottom: 2.5rem;
}

.step-number {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

/* Value Split Section */
.value-split {
    display: flex;
    flex-direction: column;
}

.value-left,
.value-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

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

.value-right p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Split Section */
.form-split {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
}

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

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

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

.form-right {
    background-color: #ffffff;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #dfe6e9;
    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: 1.1rem;
    background-color: #27ae60;
    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: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
}

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

.sticky-cta a {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

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

.page-hero-content p {
    font-size: 1.2rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

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

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.problem-list li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.problem-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
    line-height: 1;
}

.pricing-box {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.guarantee-content {
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

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

.guarantee-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Pricing Info Section */
.pricing-info {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.pricing-info-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.pricing-info-content p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-note {
    background-color: #f8f9fa;
    padding: 1.25rem;
    border-left: 4px solid #3498db;
    font-size: 1.05rem;
}

.pricing-note strong {
    color: #2c3e50;
}

/* About Page Styles */
.about-split {
    display: flex;
    flex-direction: column;
}

.about-left,
.about-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

.about-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Team Section */
.team-split {
    display: flex;
    flex-direction: column;
}

.team-left,
.team-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

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

.team-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

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

/* Approach Section */
.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-left,
.approach-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

.approach-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.approach-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-list li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.approach-list li strong {
    color: #2c3e50;
}

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

/* Commitment Section */
.commitment-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

/* Certifications Section */
.certifications-split {
    display: flex;
    flex-direction: column;
}

.cert-left,
.cert-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

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

.cert-right p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.cert-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cert-list li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

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

/* Contact Page Styles */
.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-left,
.contact-right {
    flex: 1;
    padding: 3rem 2rem;
}

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

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-block a {
    color: #3498db;
    font-weight: 600;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #ecf0f1;
}

.hours-table td {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 40%;
}

.hours-table td:last-child {
    color: #5a6c7d;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

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

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

.map-overlay p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Access Info */
.access-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.access-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

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

.access-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Visit Info */
.visit-info {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.visit-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.visit-content a {
    color: #3498db;
    font-weight: 600;
}

/* Zone Intervention */
.zone-intervention {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.zone-intervention h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.zone-content {
    max-width: 900px;
    margin: 0 auto;
}

.zone-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.zone-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.zone-list li {
    font-size: 1.05rem;
    color: #2c3e50;
    padding-left: 1.5rem;
    position: relative;
}

.zone-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

/* Thanks Page Styles */
.thanks-hero {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.service-confirmation strong {
    color: #3498db;
}

/* Next Steps */
.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

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

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

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

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

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

.step-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.step-time {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Reminder */
.contact-reminder {
    background-color: #fff3cd;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 3rem;
}

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

.contact-reminder p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.email-link {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Thanks Actions */
.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Reassurance Section */
.reassurance {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.reassurance h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

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

.reassurance-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.legal-container h2:first-child {
    margin-top: 0;
}

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

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

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

.legal-container li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #3498db;
    font-weight: 600;
}

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

/* Reverse Layout */
.reverse {
    flex-direction: column-reverse;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
        min-height: 85vh;
    }

    .trust-split {
        flex-direction: row;
    }

    .process-split {
        flex-direction: row;
    }

    .value-split {
        flex-direction: row;
    }

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

    .about-split {
        flex-direction: row;
    }

    .team-split {
        flex-direction: row;
    }

    .approach-split {
        flex-direction: row;
    }

    .certifications-split {
        flex-direction: row;
    }

    .contact-split {
        flex-direction: row;
    }

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

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .testimonials-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .guarantee-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .guarantee-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .access-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .access-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .zone-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .zone-list li {
        flex: 1 1 calc(50% - 1rem);
    }

    .reassurance-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reassurance-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .nav-split {
        padding: 1.5rem 4rem;
    }

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

    .hero-left,
    .hero-right {
        padding: 4rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .testimonials-container {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .values-grid {
        gap: 2.5rem;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .guarantee-grid {
        flex-wrap: nowrap;
    }

    .guarantee-item {
        flex: 1;
    }

    .access-grid {
        flex-wrap: nowrap;
    }

    .access-item {
        flex: 1;
    }

    .reassurance-grid {
        flex-wrap: nowrap;
    }

    .reassurance-item {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }
}

/* Print Styles */
@media print {
    .nav-split,
    .cookie-banner,
    .sticky-cta,
    .footer {
        display: none;
    }
}