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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8c3a;
    --accent-color: #8fbc5e;
    --dark-color: #1a2e0f;
    --light-color: #f4f7f0;
    --text-color: #2c2c2c;
    --text-light: #6b6b6b;
    --border-color: #d4e2c8;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.ad-notice {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 30px;
    z-index: 999;
    margin: 20px auto;
    max-width: 1400px;
    border-radius: 8px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 80px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: flex-start;
}

.intro-block-small {
    flex: 0.8;
}

.intro-block-small h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--dark-color);
}

.intro-block-large {
    flex: 1.2;
    padding-left: 60px;
    border-left: 3px solid var(--accent-color);
}

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

.services-stagger {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 80px;
    margin-left: 120px;
}

.service-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
    margin-left: 100px;
}

.service-center {
    flex-direction: column;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-image {
    flex: 1;
    background-color: var(--light-color);
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    padding: 80px 40px;
    background-color: var(--light-color);
    border-radius: 12px;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.trust-image {
    flex: 0.8;
    background-color: var(--border-color);
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.form-section {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container {
    background-color: var(--light-color);
    padding: 60px;
    border-radius: 12px;
    margin-left: 60px;
}

.form-container h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.form-container p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 40px 30px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

.footer-col ul li a {
    color: #b8c8a9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b8c8a9;
    font-size: 14px;
}

.disclaimer {
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    color: #b8c8a9;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-color);
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-accept:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-reject {
    background-color: #e0e0e0;
    color: var(--text-color);
}

.btn-reject:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.page-header-offset {
    max-width: 1400px;
    margin: 80px auto 60px;
    padding: 0 40px;
    margin-left: 200px;
}

.page-header-offset h1 {
    font-size: 56px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.page-header-offset p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.story-image-large {
    flex: 1.2;
    background-color: var(--light-color);
}

.story-image-large img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 0.8;
    padding-top: 40px;
}

.story-text h2 {
    font-size: 38px;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.story-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.value-item {
    margin-bottom: 60px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.value-offset-left {
    margin-right: 200px;
}

.value-offset-right {
    margin-left: 200px;
}

.value-center {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.value-item h3 {
    font-size: 30px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.team-section > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-layout {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    text-align: left;
}

.member-image {
    background-color: var(--light-color);
    margin-bottom: 20px;
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    max-width: 1400px;
    margin: 120px auto;
    padding: 80px 40px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 18px 50px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--light-color);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    margin-top: 30px;
}

.services-additional {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.services-additional h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 60px;
}

.additional-services-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.additional-service {
    flex: 1;
    max-width: 450px;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
}

.additional-service h3 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.additional-service p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price-small {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.contact-image-side {
    flex: 1;
    background-color: var(--light-color);
}

.contact-image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-approach {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.contact-approach h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 60px;
    text-align: center;
}

.approach-content {
    display: flex;
    gap: 40px;
}

.approach-step {
    flex: 1;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.approach-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.thanks-content {
    flex: 1.3;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--light-color);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 40px;
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-color);
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.next-step {
    margin-bottom: 30px;
}

.next-step h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.next-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-return {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-return:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 14px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.thanks-image {
    flex: 0.7;
    background-color: var(--light-color);
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.legal-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
    line-height: 1.8;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.legal-page h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-offset,
    .about-story,
    .contact-layout,
    .thanks-section,
    .trust-section {
        flex-direction: column;
    }

    .hero-image-right {
        margin-top: 0;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .service-right {
        margin-left: 0;
    }

    .team-layout,
    .approach-content,
    .additional-services-grid {
        flex-direction: column;
    }

    .value-offset-left,
    .value-offset-right {
        margin-left: 0;
        margin-right: 0;
    }

    .page-header-offset {
        margin-left: auto;
    }

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

    .form-container {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

    .intro-block-large {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--accent-color);
        padding-top: 30px;
    }
}