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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #97c05c;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --text-dark: #2a2a2a;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-align: center;
}

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

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

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

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.page-hero h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    text-align: left;
    margin-bottom: 25px;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

.company-philosophy {
    background-color: var(--bg-light);
}

.featured-services {
    background-color: var(--bg-white);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.benefits {
    background-color: var(--bg-light);
}

.benefit-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
}

.benefit-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.testimonials {
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    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: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.knowledge-section {
    background-color: var(--bg-white);
}

.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.knowledge-item {
    flex: 1 1 calc(50% - 15px);
}

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

.knowledge-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.faq {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: var(--bg-white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.trust-indicators {
    background-color: var(--bg-white);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    flex: 1 1 calc(50% - 15px);
    padding: 20px;
}

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

.trust-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

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

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 20px;
}

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

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: left;
}

.cookie-options {
    margin-bottom: 30px;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

.values {
    background-color: var(--bg-light);
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.value-icon img {
    width: 100%;
    height: 100%;
}

.value-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.milestones {
    background-color: var(--bg-white);
}

.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 60px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
}

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

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.achievements {
    background-color: var(--bg-light);
}

.achievement-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.achievement-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

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

.achievement-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-list {
    background-color: var(--bg-white);
}

.service-detailed {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    margin: 0;
    text-align: left;
    font-size: 28px;
}

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

.service-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-details ul {
    list-style: disc;
    padding-left: 25px;
}

.service-details li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.service-benefits {
    background-color: var(--bg-light);
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 17px);
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
}

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

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 15px;
}

.service-comparison {
    background-color: var(--bg-white);
}

.comparison-content {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

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

.comparison-item p {
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.7;
}

.comparison-reason {
    font-size: 15px;
    font-style: italic;
}

.contact-info {
    background-color: var(--bg-white);
}

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

.contact-block {
    flex: 1 1 calc(50% - 20px);
}

.contact-block h2 {
    text-align: left;
    margin-bottom: 25px;
}

.contact-block h3 {
    text-align: left;
    font-size: 18px;
    margin: 25px 0 10px 0;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
}

.contact-reasons {
    background-color: var(--bg-light);
}

.reason-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
}

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

.reason-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you-text {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.thank-you-content p {
    margin-bottom: 30px;
    color: var(--text-medium);
}

.thank-you-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.legal-content h2 {
    font-size: 26px;
    margin: 40px 0 20px 0;
    color: var(--primary-color);
    text-align: left;
}

.legal-content h3 {
    font-size: 20px;
    margin: 30px 0 15px 0;
    color: var(--primary-color);
    text-align: left;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-medium);
}

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

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

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

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

.cookie-table td {
    color: var(--text-medium);
}

.cookie-settings-button {
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 63px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-text {
        font-size: 16px;
    }

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

    section h2 {
        font-size: 26px;
    }

    .service-grid,
    .testimonial-grid,
    .process-steps,
    .knowledge-grid,
    .trust-grid,
    .team-grid,
    .achievement-grid,
    .benefit-grid,
    .reason-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial,
    .process-step,
    .knowledge-item,
    .trust-item,
    .team-member,
    .achievement-item,
    .benefit-card,
    .reason-item {
        flex: 1 1 100%;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

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

    .footer-section {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-year {
        width: 40px;
        font-size: 16px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detailed {
        padding: 25px;
    }

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

    .contact-block {
        flex: 1 1 100%;
    }

    .thank-you-links {
        flex-direction: column;
    }

    .thank-you-links .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 26px;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 22px;
    }

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

    .stat-number {
        font-size: 36px;
    }
}
