* {
    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: #333;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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: 15px;
}

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

.btn-accept {
    background: #4CAF50;
    color: #fff;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    max-width: 580px;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5530;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-section {
    padding: 100px 60px;
    background: #fff;
    display: flex;
    justify-content: center;
}

.intro-narrow {
    max-width: 720px;
}

.intro-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.intro-narrow p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.split-content-reverse .content-half:first-child {
    order: 2;
}

.split-content-reverse .content-half:last-child {
    order: 1;
}

.content-half {
    flex: 1;
    background: #dce8dd;
}

.content-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-half:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background: #2c5530;
}

.split-content-reverse .content-half:last-child {
    background: #2c5530;
}

.content-half h3 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-half p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-showcase {
    padding: 120px 60px;
    background: #f9faf9;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header-center h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.section-header-center p {
    font-size: 19px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8f0e9;
}

.service-card h4 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin: 0 25px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5530;
    margin: 0 25px 20px;
}

.btn-service {
    margin: 0 25px 25px;
    padding: 14px 0;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #234425;
}

.form-section {
    padding: 90px 60px;
    background: #f5f7f5;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-container > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background: #234425;
}

.testimonials-inline {
    padding: 100px 60px;
    background: #fff;
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-block {
    flex: 1;
    padding: 40px;
    background: #f9faf9;
    border-left: 4px solid #2c5530;
}

.testimonial-block blockquote {
    border: none;
}

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

.testimonial-block cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.disclaimer-section {
    padding: 60px 60px;
    background: #f5f5f5;
}

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

.disclaimer-content h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    gap: 60px;
    padding: 70px 60px;
    background: #1a1a1a;
    color: #fff;
}

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .split-content-reverse .content-half:first-child {
        order: 1;
    }

    .split-content-reverse .content-half:last-child {
        order: 2;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-inline {
        flex-direction: column;
    }

    .footer-split {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

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

    .hero-content p {
        font-size: 17px;
    }

    .intro-section,
    .services-showcase,
    .form-section,
    .testimonials-inline,
    .disclaimer-section {
        padding: 60px 30px;
    }

    .content-half {
        padding: 50px 30px !important;
    }

    .footer-split {
        padding: 50px 30px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 30px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-container .selected-service {
    font-weight: 600;
    color: #2c5530;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #2c5530;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background: #234425;
}

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

.legal-container h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.legal-container .last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin: 15px 0 25px 30px;
}

.legal-container ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background: #2c5530;
    color: #fff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 30px;
}

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

.contact-detail h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-detail p {
    font-size: 18px;
    margin: 0;
}

.contact-map {
    flex: 1;
    background: #e8f0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #d4e4d6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
}

@media (max-width: 1024px) {
    .contact-split {
        flex-direction: column;
    }
}

.about-hero {
    padding: 100px 60px;
    background: #f5f7f5;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
}

.about-section {
    margin-bottom: 70px;
}

.about-section h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.services-list-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
}

.services-list-page h1 {
    font-size: 44px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.services-list-page > p {
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-item .price {
    font-size: 26px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 20px;
}

.service-item .btn-service {
    display: inline-block;
    margin: 0;
}
