* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: #234a24;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

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

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

.main-nav a:hover {
    color: #2c5f2d;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #5a6c7d;
}

.hero-right {
    background-color: #dfe6e9;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a24;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    background-color: #dfe6e9;
}

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

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

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.split-content-wide {
    flex: 1.2;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-wide h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.process-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.services-preview {
    padding: 100px 60px;
    background-color: #ffffff;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-card .price {
    display: block;
    padding: 0 24px 24px;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.testimonials-section {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.testimonials-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
}

.form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-container-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f2d;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a24;
}

.disclaimer-section {
    padding: 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
}

.footer-split {
    display: flex;
    gap: 80px;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-center h4,
.footer-right h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #2c5f2d;
}

.page-hero-split {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content-centered p {
    font-size: 20px;
    color: #5a6c7d;
}

.values-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

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

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

.cta-section {
    padding: 100px 60px;
    background-color: #2c5f2d;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-includes {
    margin: 32px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 32px 0;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
}

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

.btn-service {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #234a24;
}

.service-detail-image {
    background-color: #dfe6e9;
}

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

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-map {
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-area-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.service-area-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-area-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-content,
.area-list {
    flex: 1;
}

.area-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.area-list h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.area-list ul {
    list-style: none;
    padding-left: 0;
}

.area-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #5a6c7d;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.service-confirmation {
    font-size: 16px;
    margin-bottom: 40px;
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ol {
    padding-left: 20px;
}

.thanks-next li {
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a24;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

.legal-container h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #5a6c7d;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .split-section,
    .form-container-split,
    .contact-split,
    .service-area-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .services-grid,
    .testimonials-split,
    .values-grid,
    .footer-split {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

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

    .split-content,
    .split-content-wide,
    .service-detail-content {
        padding: 60px 40px;
    }

    .services-preview,
    .testimonials-section,
    .form-section {
        padding: 80px 30px;
    }
}

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

    .split-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .section-intro h2,
    .values-section h2,
    .cta-content-centered h2 {
        font-size: 32px;
    }

    .services-grid {
        gap: 30px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}