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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d7a3e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-offset {
    display: flex;
    min-height: 100vh;
    padding: 120px 60px 80px;
    gap: 80px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: #0a0a0a;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #444;
}

.hero-image-right {
    flex: 1;
    max-width: 650px;
    background-color: #e8f5e9;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.cta-primary:hover {
    background: #235a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #2d7a3e;
    text-decoration: none;
    border: 2px solid #2d7a3e;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

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

.intro-narrow {
    padding: 100px 60px;
    background: #f9fafb;
}

.intro-container {
    max-width: 720px;
    margin: 0 auto;
}

.intro-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

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

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

.section-title-offset {
    margin-bottom: 60px;
    margin-left: 120px;
}

.section-title-offset h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 800;
}

.subtitle {
    font-size: 19px;
    color: #666;
}

.services-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 480px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
}

.card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.card-small .card-image {
    height: 220px;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2d7a3e;
    margin-top: 15px;
}

.cta-inline {
    text-align: center;
    margin-top: 70px;
}

.values-split {
    display: flex;
    gap: 80px;
    padding: 100px 60px;
    background: #f4f6f8;
    align-items: center;
}

.values-content {
    flex: 1;
    max-width: 550px;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.values-image {
    flex: 1;
    max-width: 600px;
    background-color: #d0d8e0;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial-section {
    padding: 80px 60px;
    background: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 400px;
    padding: 40px;
    background: #f9fafb;
    border-left: 4px solid #2d7a3e;
    border-radius: 6px;
}

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

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

.contact-form-section {
    padding: 100px 60px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    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: #2d7a3e;
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px;
    background: #252525;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #a0a0a0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #7ac18c;
}

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

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

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

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

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

.btn-reject:hover {
    border-color: #999;
}

@media (max-width: 968px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-offset {
        flex-direction: column;
        padding: 100px 30px 60px;
        gap: 50px;
    }

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

    .section-title-offset {
        margin-left: 0;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        min-width: 100%;
    }

    .values-split {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .testimonial {
        min-width: 100%;
    }

    .footer-content {
        gap: 40px;
    }

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

.page-header {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f4f6f8 0%, #e8f5e9 100%);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    color: #444;
    max-width: 800px;
}

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

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 35px;
    font-weight: 600;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.content-section ul {
    margin: 20px 0 20px 30px;
}

.content-section li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.service-detail-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2d7a3e;
}

.service-detail-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    margin-top: 0;
}

.service-detail-card .price {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-detail-card p {
    margin-bottom: 15px;
}

.service-detail-card ul {
    margin: 15px 0 15px 20px;
}

.contact-info-section {
    padding: 80px 60px;
    background: #f9fafb;
}

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

.contact-info-box {
    flex: 1;
    min-width: 350px;
}

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d7a3e;
}

.info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3a3a3a;
}

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

.thanks-box {
    max-width: 700px;
    text-align: center;
    padding: 60px 40px;
    background: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.thanks-box h1 {
    font-size: 44px;
    margin-bottom: 25px;
    font-weight: 800;
    color: #2d7a3e;
}

.thanks-box p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.thanks-box .cta-primary {
    margin-top: 30px;
}