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

:root {
    --color-primary: #2d5a27;
    --color-primary-dark: #1e3d1a;
    --color-secondary: #6b8e68;
    --color-accent: #8fbc8b;
    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 800px;
}

.ad-disclosure {
    background-color: var(--color-gray-light);
    color: var(--color-gray);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

.header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
}

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

.nav-list a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-secondary);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45,90,39,0.85) 0%, rgba(30,61,26,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-short {
    min-height: 30vh;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-secondary);
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45,90,39,0.9) 0%, rgba(30,61,26,0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: #fff;
}

.section-dark {
    background-color: var(--color-dark);
    color: #fff;
}

.section-accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.section-form {
    background-color: var(--color-gray-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.intro-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-block p {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.8;
}

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

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

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.section-dark .split-content p {
    opacity: 0.9;
}

.service-preview {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card-content p {
    color: var(--color-gray);
    margin-bottom: 15px;
    font-size: 15px;
}

.service-card-content .price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.center-cta {
    text-align: center;
}

.testimonial-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block blockquote p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.main-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-gray);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.story-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.value-icon {
    margin-bottom: 20px;
    color: var(--color-accent);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-item p {
    opacity: 0.85;
    line-height: 1.7;
}

.cta-block {
    text-align: center;
    padding: 40px;
}

.cta-block h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-block p {
    margin-bottom: 25px;
    font-size: 18px;
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro p {
    font-size: 18px;
    color: var(--color-gray);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-item-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-item-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-item-content > p {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
}

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

.info-box {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info-box p {
    opacity: 0.9;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.contact-block p {
    line-height: 1.7;
}

.contact-note {
    flex: 1;
}

.note-card {
    background-color: var(--color-gray-light);
    padding: 35px;
    border-radius: 12px;
}

.note-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.note-card p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.faq-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    opacity: 0.85;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 18px;
    margin-bottom: 20px;
}

.thanks-content > p {
    margin-bottom: 15px;
    color: var(--color-gray);
}

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

.legal-section {
    padding: 80px 0;
}

.legal-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: var(--color-gray);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-gray-light);
}

.cookie-table th {
    background-color: var(--color-gray-light);
    font-weight: 600;
}

.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-col ul a {
    color: #fff;
    opacity: 0.8;
    font-size: 14px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 25px;
    font-size: 14px;
}

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

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

    .service-preview {
        flex-direction: column;
    }

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

    .service-item {
        flex-direction: column;
    }

    .service-item.service-item-reverse {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        width: 100%;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: var(--shadow-md);
        padding: 20px;
    }

    .nav.show {
        display: block;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .intro-block h2,
    .split-content h2,
    .story-block h2,
    .contact-info h2,
    .faq-block h2 {
        font-size: 26px;
    }

    .main-form {
        padding: 25px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .footer-col {
        flex: 0 0 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
