/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    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;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2c7a4e;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #245c3b;
}

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

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    position: relative;
}

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    min-height: 400px;
}

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

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

.cta-primary {
    background-color: #2c7a4e;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #245c3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 78, 0.3);
}

.cta-secondary {
    background-color: #ffffff;
    color: #2c7a4e;
    border: 2px solid #2c7a4e;
}

.cta-secondary:hover {
    background-color: #2c7a4e;
    color: #ffffff;
}

.cta-large {
    padding: 20px 48px;
    font-size: 1.1rem;
    background-color: #2c7a4e;
    color: #ffffff;
}

.cta-large:hover {
    background-color: #245c3b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 122, 78, 0.3);
}

.cta-text {
    color: #2c7a4e;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-text:hover {
    color: #245c3b;
    text-decoration: underline;
}

/* Trust Indicators */
.trust-indicators {
    padding: 60px 20px;
    background-color: #ffffff;
}

.indicators-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.indicator {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.indicator h3 {
    font-size: 2.5rem;
    color: #2c7a4e;
    margin-bottom: 8px;
    font-weight: 700;
}

.indicator p {
    font-size: 1rem;
    color: #666666;
}

/* Split Section (Alternating) */
.split-section {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.split-section.alternate {
    background-color: #f8f9fa;
}

.split-image {
    flex: 1;
    min-height: 400px;
}

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

.split-content {
    flex: 1;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.split-content li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.split-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a4e;
    font-weight: bold;
}

.inline-cta-box {
    background-color: #f0f7f4;
    padding: 24px;
    border-left: 4px solid #2c7a4e;
    margin-top: 30px;
}

.inline-cta-box p {
    margin-bottom: 16px;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c7a4e;
    margin-top: 16px;
}

/* Process Split */
.process-split {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 80px 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

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

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2c7a4e;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #333333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #2c7a4e;
    font-style: normal;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-wrapper-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-intro h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-benefits li {
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: #333333;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c7a4e;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 1rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    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: #2c7a4e;
}

.btn-submit {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #2c7a4e;
    color: #ffffff;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #245c3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 78, 0.3);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background-color: #1a4d2e;
    color: #ffffff;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 450px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-image-right {
    flex: 1;
    min-height: 350px;
}

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

/* Story Section */
.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.values-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2c7a4e;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Team Approach */
.team-approach {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Credentials Section */
.credentials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.credentials-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.credential-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #2c7a4e;
}

.credential-item h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.credential-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 20px;
    background-color: #1a4d2e;
    color: #ffffff;
}

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA About */
.cta-about {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 32px;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px 80px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

.service-visual-large {
    flex: 1;
    min-height: 350px;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a4e;
    margin-bottom: 24px;
}

.service-info h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.service-info li {
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.service-info li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #2c7a4e;
    font-size: 1.3rem;
    line-height: 1;
}

/* Warranty Section */
.warranty-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.warranty-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.warranty-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2c7a4e;
}

.warranty-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

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

/* Booking CTA Section */
.booking-cta-section {
    padding: 80px 20px;
    background-color: #1a4d2e;
    color: #ffffff;
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

.contact-split-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
}

.contact-block a {
    color: #2c7a4e;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.quick-response-box {
    background-color: #f0f7f4;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c7a4e;
}

.quick-response-box h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.quick-response-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-split-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* Final Contact CTA */
.final-contact-cta {
    padding: 80px 20px;
    background-color: #1a4d2e;
    color: #ffffff;
    text-align: center;
}

.final-contact-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 50px;
    line-height: 1.7;
}

.thanks-info-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    border-top: 4px solid #2c7a4e;
}

.thanks-info-box h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: step-counter;
    list-style: none;
}

.thanks-steps li {
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    counter-increment: step-counter;
}

.thanks-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #2c7a4e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.thanks-service-info {
    background-color: #f0f7f4;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-contact {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-contact h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-contact p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.thanks-contact a {
    color: #2c7a4e;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

.thanks-note {
    font-size: 0.95rem;
    color: #666666;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-thanks-home,
.btn-thanks-services {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 220px;
}

.btn-thanks-home {
    background-color: #2c7a4e;
    color: #ffffff;
}

.btn-thanks-home:hover {
    background-color: #245c3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 122, 78, 0.3);
}

.btn-thanks-services {
    background-color: #ffffff;
    color: #2c7a4e;
    border: 2px solid #2c7a4e;
}

.btn-thanks-services:hover {
    background-color: #2c7a4e;
    color: #ffffff;
}

/* Legal Page */
.legal-page {
    padding: 60px 20px 80px;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: #2c7a4e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #245c3b;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column li a {
    font-size: 1rem;
    color: #cccccc;
}

.footer-column li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #999999;
}

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

    .hero-left,
    .hero-right {
        width: 50%;
    }

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

    .split-section.reverse .split-image {
        order: 2;
    }

    .split-image,
    .split-content {
        width: 50%;
    }

    .split-content {
        padding: 60px 50px;
    }

    .page-hero-split {
        flex-direction: row;
        align-items: center;
    }

    .hero-content-left,
    .hero-image-right {
        width: 50%;
    }

    .split-layout {
        flex-direction: row;
        gap: 60px;
    }

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

    .split-text,
    .split-layout .split-image {
        width: 50%;
    }

    .process-split {
        flex-direction: row;
        gap: 60px;
    }

    .process-split .split-image,
    .process-split .split-content {
        width: 50%;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 280px;
    }

    .form-wrapper-split {
        flex-direction: row;
        gap: 60px;
    }

    .form-intro,
    .form-container {
        width: 50%;
    }

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

    .service-visual {
        width: 40%;
        height: auto;
    }

    .service-details {
        width: 60%;
    }

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

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

    .service-visual-large,
    .service-info {
        width: 50%;
    }

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

    .value-card {
        flex: 1;
        min-width: 300px;
    }

    .credentials-split {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .credential-item {
        flex: 1;
        min-width: 280px;
    }

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

    .warranty-card {
        flex: 1;
    }

    .contact-split-layout {
        flex-direction: row;
        gap: 80px;
    }

    .contact-details,
    .contact-visual {
        width: 50%;
    }

    .faq-split-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1;
        min-width: 280px;
    }

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

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .nav-container {
        padding: 0 50px;
    }

    .indicators-grid {
        gap: 60px;
    }

    .services-split-grid {
        gap: 60px;
    }
}