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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a4d;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.nav a:hover {
    color: #2c7a4d;
}

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 10px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #d4e3d9;
    position: relative;
    overflow: hidden;
}

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

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2c7a4d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #2c7a4d;
    text-decoration: none;
    border: 2px solid #2c7a4d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Split Layout */
.intro-section,
.values-section,
.about-content section,
.contact-info-section,
.location-section,
.services-detail {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.split-layout:last-child {
    margin-bottom: 0;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.split-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.split-text ul {
    margin: 20px 0 20px 20px;
}

.split-text ul li {
    margin-bottom: 10px;
    color: #555;
}

.split-visual {
    flex: 1;
    background-color: #e8f0ed;
    border-radius: 8px;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-form {
    flex: 1;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d4e3d9;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px 15px;
    color: #555;
    font-size: 15px;
}

.service-card .price {
    display: block;
    padding: 0 20px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #2c7a4d;
}

.service-card .link-arrow {
    display: inline-block;
    padding: 0 20px 20px;
    color: #2c7a4d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card .link-arrow:hover {
    color: #235a39;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-section blockquote {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2c7a4d;
    margin-bottom: 30px;
    border-radius: 6px;
}

.testimonial-section blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 10px;
}

.testimonial-section cite {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

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

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

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #2c7a4d;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c7a4d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0;
    background-color: #f1f4f3;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Page Hero */
.page-hero {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
}

/* Services Detail */
.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a4d;
    font-weight: bold;
    font-size: 18px;
}

.price-box {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a4d;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #2c7a4d;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.cta-section .cta-primary:hover {
    background-color: #f8f9fa;
}

.cta-section .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

/* Team Note */
.team-note {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.team-note h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-note p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Values Grid */
.values-highlight {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-highlight h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c7a4d;
}

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c7a4d;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
    font-size: 14px;
    color: #7f8c8d;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #555;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
}

.thanks-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c7a4d;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    background-color: #d4e3d9;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
}

.legal-table thead {
    background-color: #f8f9fa;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.legal-table th {
    font-weight: 600;
    color: #2c3e50;
}

.legal-table td {
    color: #555;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.no-link {
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-card {
        min-width: 100%;
    }

    .nav {
        gap: 15px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .thanks-section .container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    .split-text h2 {
        font-size: 28px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}