* {
    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: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.main-nav a:hover {
    color: #3d7c1f;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: #2c3e50;
    border-bottom: 1px solid #e8e8e8;
}

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

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ede8 100%);
}

.split-right {
    flex: 1;
    overflow: hidden;
}

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #3d7c1f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #2d5016;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61,124,31,0.3);
}

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

.cta-secondary:hover {
    background: #3d7c1f;
    color: #ffffff;
}

.intro-section,
.values-section,
.why-choose-section,
.final-trust-section {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.content-left img,
.content-right img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-right h2,
.content-left h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a3d0f;
}

.content-right p,
.content-left p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.values-section {
    background: #f8faf8;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a3d0f;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a3d0f;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3d7c1f;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #3d7c1f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #2d5016;
}

.testimonial-section {
    padding: 100px 0;
    background: #1a3d0f;
    color: #ffffff;
}

.testimonial-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonial-content {
    flex: 1;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 12px;
}

blockquote {
    margin-bottom: 40px;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

cite {
    font-style: normal;
    color: #a8c5a0;
    font-size: 16px;
}

.process-section {
    padding: 100px 0;
    background: #f8faf8;
}

.process-cards {
    display: flex;
    gap: 30px;
}

.process-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3d7c1f;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a3d0f;
}

.process-card p {
    font-size: 16px;
    color: #4a5568;
}

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

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
}

.cta-form {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 50px;
    background: #f5f7fa;
}

.service-form {
    width: 100%;
    max-width: 500px;
}

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

.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: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3d7c1f;
}

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

.btn-submit:hover {
    background: #2d5016;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #3d7c1f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(61,124,31,0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #2d5016;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(61,124,31,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

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

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

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

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

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

.btn-accept {
    background: #3d7c1f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2d5016;
}

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #3d7c1f;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 15px;
}

.content-page {
    padding: 80px 0;
}

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

.content-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2d5016;
}

.content-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5016;
}

.content-page p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4a5568;
}

.contact-info {
    background: #f8faf8;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

@media (max-width: 968px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .cta-section-split {
        flex-direction: column;
    }

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

    .testimonial-split {
        flex-direction: column;
    }

    .process-cards {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        gap: 20px;
    }

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

    .section-title-center {
        font-size: 32px;
    }
}