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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc4f;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.hero-magazine {
    position: relative;
    margin-bottom: 80px;
}

.hero-grid {
    position: relative;
}

.hero-main {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4e0c8;
}

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

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 48px;
    max-width: 700px;
    box-shadow: var(--shadow-hover);
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.hero-overlay p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.5;
}

.intro-columns {
    padding: 80px 0;
}

.col-layout {
    display: flex;
    gap: 60px;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

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

.col-main p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.quick-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.quick-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.image-break {
    margin: 60px 0;
    background-color: #c8d4ba;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

.content-blocks h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.content-blocks > .container-narrow > p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

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

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

.content-left h3,
.content-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-left p,
.content-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background-color: #d4e0c8;
}

.image-inline {
    margin: 48px 0;
    background-color: #d4e0c8;
}

.image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.services-preview {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.services-preview h2 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border: 3px solid var(--accent-color);
}

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

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

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 24px;
    margin-bottom: 24px;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.page-header {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.lead {
    font-size: 20px;
    color: var(--text-light);
}

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

.about-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 48px;
    color: var(--primary-color);
}

.about-content h2:first-of-type {
    margin-top: 0;
}

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

.values-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.services-detailed {
    padding: 80px 0;
}

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

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

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

.service-detail-image {
    flex: 1;
    background-color: #d4e0c8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

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

.contact-info {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-image {
    flex: 1;
    background-color: #d4e0c8;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.thanks-content {
    padding: 120px 0;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-message h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-details {
    margin: 40px 0;
    text-align: left;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 48px 0;
}

.next-steps {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 24px;
}

.steps-list li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .col-layout,
    .split-content,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-menu {
        gap: 16px;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 24px;
    }

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

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

    .col-main h2,
    .content-blocks h2 {
        font-size: 28px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 32px;
    }

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