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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: #2c5530;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 560px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #2c5530;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 650px;
    line-height: 1.7;
}

.section {
    padding: 96px 0;
}

.section-light {
    background: #f8faf9;
}

.section-white {
    background: #ffffff;
}

.section-dark {
    background: #2c3e50;
    color: #ecf0f1;
}

.section-dark h2,
.section-dark h3 {
    color: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #3d6d41, #2c5530);
    color: #ffffff;
}

.section-accent h2 {
    color: #ffffff;
}

.section-image {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #34495e;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
}

.intro-block {
    padding: 48px 0;
}

.intro-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c5530;
    line-height: 1.3;
}

.intro-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #546e7a;
}

.services-intro {
    text-align: center;
    margin-bottom: 64px;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-intro p {
    font-size: 19px;
    opacity: 0.85;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    font-weight: 600;
}

.service-card p {
    margin: 0 24px 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #7cb342;
    margin: 0 24px 24px;
}

.section-dark .price {
    color: #aed581;
}

.cta-inline {
    text-align: center;
    padding: 32px;
}

.cta-inline h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-inline p {
    font-size: 18px;
    opacity: 0.95;
}

.form-section {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5530;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.btn-primary {
    background: #2c5530;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #3d6d41;
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    padding: 14px 32px;
    border: 2px solid #2c5530;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2c5530;
    color: #ffffff;
}

.quote {
    padding: 48px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote p {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    font-style: italic;
}

.values-block {
    padding: 32px 0;
}

.values-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #2c5530;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.value-item {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c5530;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 64px 0 24px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 250px;
}

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.65;
    margin-bottom: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #2c5530;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.btn-accept:hover {
    background: #3d6d41;
}

.btn-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

.btn-reject:hover {
    background: #dfe6e9;
}

.page-header {
    text-align: center;
    padding: 48px 0;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5530;
}

.page-header p {
    font-size: 20px;
    color: #546e7a;
}

.about-content {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
}

.about-text {
    flex: 1 1 55%;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c5530;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 45%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #34495e;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.principle-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
}

.principle-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.principle-item p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.mission-block {
    padding: 48px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.mission-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c5530;
}

.mission-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.stats-block {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ecf0f1;
}

.approach-section {
    padding: 48px 0;
}

.approach-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    color: #2c5530;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #7cb342;
    min-width: 80px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c5530;
}

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

.service-detail {
    display: flex;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5530;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c5530;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7cb342;
    font-weight: 700;
}

.service-detail-image {
    flex: 1 1 45%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #34495e;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #2c5530;
    margin-top: 24px;
}

.cta-section {
    text-align: center;
    padding: 32px;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.contact-layout {
    display: flex;
    gap: 64px;
    padding: 48px 0;
}

.contact-info {
    flex: 1 1 40%;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c5530;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c5530;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-map {
    flex: 1 1 60%;
}

.map-placeholder {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #34495e;
}

.contact-note {
    padding: 48px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-note h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5530;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

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

.thanks-content {
    text-align: center;
    padding: 64px 0;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c5530;
}

.thanks-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 16px;
}

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

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

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c5530;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c5530;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c5530;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c5530;
    text-decoration: underline;
}

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

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

    .nav {
        gap: 16px;
        width: 100%;
        justify-content: center;
    }

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

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

    .about-content,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

    .about-image,
    .service-detail-image {
        height: 300px;
    }

    .stats-block {
        gap: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .section {
        padding: 64px 0;
    }

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}