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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

.btn-accept:hover {
    background-color: #1e4620;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.hero-text-block {
    flex: 1;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
    object-fit: cover;
}

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

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

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

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

.intro-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

.services-grid-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-left p {
    font-size: 18px;
    color: var(--text-light);
}

.services-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    background-color: var(--border-color);
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    color: var(--text-dark);
}

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

.price-tag {
    margin: 0 24px 16px 24px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-link {
    display: inline-block;
    margin: 0 24px 24px 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1e4620;
}

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

.value-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.value-image {
    flex: 1;
}

.value-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
    object-fit: cover;
}

.value-text {
    flex: 1;
}

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

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

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #1e4620;
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
}

.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: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
}

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

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px 40px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-column p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.about-intro {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
    object-fit: cover;
}

.about-text {
    flex: 1;
}

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

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

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

.values-section h2 {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

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

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

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

.approach-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

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

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

.approach-layout img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
    object-fit: cover;
}

.expertise-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.expertise-section h2 {
    max-width: 1400px;
    margin: 0 auto 24px auto;
    font-size: 42px;
    text-align: center;
    color: var(--text-dark);
}

.expertise-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: var(--text-light);
}

.expertise-areas {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.expertise-area {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.expertise-area h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.service-detail {
    padding: 100px 0;
}

.service-detail.alt {
    background-color: var(--bg-light);
    margin: 0 -40px;
    padding: 100px 40px;
}

.service-detail-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

.service-detail-text h3 {
    font-size: 24px;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
}

.service-detail-text ul {
    margin-bottom: 32px;
    padding-left: 24px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.pricing-info {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--border-color);
    object-fit: cover;
}

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

.location-section h2 {
    max-width: 1400px;
    margin: 0 auto 20px auto;
    font-size: 38px;
    color: var(--text-dark);
}

.location-section p {
    max-width: 1400px;
    margin: 0 auto 32px auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.location-info {
    max-width: 1400px;
    margin: 0 auto;
}

.location-info p {
    margin-bottom: 12px;
}

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

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.steps {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.step {
    flex: 1;
    text-align: left;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px 0;
    color: var(--text-dark);
}

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

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

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

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

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content,
    .value-layout,
    .about-content,
    .approach-layout,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

    .services-cards,
    .values-grid,
    .expertise-areas,
    .steps {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

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

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