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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d7a4f;
    --accent-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-dark: #1c1c1c;
    --border-color: #dfe6e9;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-cookie.accept {
    background-color: var(--secondary-color);
    color: white;
}

.btn-cookie.accept:hover {
    background-color: var(--primary-color);
}

.btn-cookie.reject {
    background-color: #6c757d;
    color: white;
}

.btn-cookie.reject:hover {
    background-color: #5a6268;
}

.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #6c757d;
    text-align: center;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

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

.split-left {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.92), rgba(45, 122, 79, 0.85));
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 500px;
}

.split-right {
    flex: 1;
    background: var(--bg-light);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.intro-narrative {
    padding: 80px 20px;
    background: white;
}

.intro-narrative h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-grid {
    padding: 80px 20px;
    background: var(--bg-light);
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--border-color);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.form-section {
    padding: 80px 20px;
    background: white;
}

.form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-intro {
    margin-bottom: 32px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background: #e9ecef;
}

.highlight-field {
    animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
    0% { background: #fff3cd; }
    50% { background: #fff3cd; }
    100% { background: #e9ecef; }
}

.btn-submit {
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background: var(--primary-color);
    color: white;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.testimonials-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 360px;
}

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

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.final-cta {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.about-hero {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-hero p {
    font-size: 20px;
    color: var(--text-dark);
}

.about-split {
    padding: 80px 20px;
    background: white;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.split-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--border-color);
}

.methodology-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.methodology-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.method-item {
    background: white;
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    max-width: 500px;
}

.method-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.method-item p {
    font-size: 16px;
    line-height: 1.7;
}

.values-section {
    padding: 80px 20px;
    background: white;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.values-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
    text-align: center;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-about {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-hero {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-hero p {
    font-size: 20px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 20px;
    background: white;
}

.service-detail-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-content {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.service-description {
    flex: 1;
}

.service-description p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-description h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-description ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 8px;
    font-size: 16px;
}

.service-image-block {
    flex: 0 0 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--border-color);
}

.contact-hero {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-dark);
}

.contact-info-section {
    padding: 80px 20px;
    background: white;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--border-color);
}

.contact-additional {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.thanks-section p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-confirmation {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 32px 0;
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary-color);
}

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

.next-steps {
    padding: 80px 20px;
    background: white;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 20px;
    background: white;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-content th,
.legal-content td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.legal-content th {
    background: var(--bg-light);
    font-weight: 600;
}

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

    .split-left,
    .split-right {
        min-height: 400px;
    }

    .hero-overlay {
        padding: 40px;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-image-block {
        flex: 1;
        width: 100%;
        height: 250px;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
    }
}

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

    .hero-overlay p {
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 42px;
    }

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

    .testimonial-item {
        flex: 1 1 100%;
    }

    .method-item {
        flex: 1 1 100%;
    }

    .form-wrapper {
        padding: 24px;
    }

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