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

:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #CD853F;
    --color-dark: #2c1810;
    --color-text: #333333;
    --color-light-bg: #f9f6f2;
    --color-white: #ffffff;
    --color-gray: #666666;
}

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

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

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

.header {
    background-color: var(--color-white);
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: var(--color-gray);
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fafafa;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(139, 69, 19, 0.65) 100%);
    display: flex;
    align-items: center;
}

.hero-text {
    color: var(--color-white);
    max-width: 650px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-primary-inverted {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    border: 2px solid var(--color-white);
    cursor: pointer;
    font-size: 16px;
}

.btn-primary-inverted:hover {
    background-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-text);
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 700;
}

.section-header-center p {
    font-size: 18px;
    color: var(--color-gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--color-text);
    line-height: 1.6;
}

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

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

.cta-section {
    padding: 100px 0;
}

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

.cta-content-centered {
    text-align: center;
    color: var(--color-white);
}

.cta-content-centered h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--color-dark);
    font-weight: 700;
}

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

.process-step {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
    opacity: 0.3;
}

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

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

.testimonials-section {
    padding: 100px 0;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--color-dark);
    font-weight: 700;
}

.testimonial-block {
    background-color: var(--color-white);
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-primary);
    border-radius: 4px;
}

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

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

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

.form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: var(--color-gray);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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(--color-primary);
}

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

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

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

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

.trust-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.trust-item p {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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 {
    flex: 1 1 600px;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--color-white);
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.selected-service-info {
    background-color: var(--color-light-bg);
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-size: 15px;
}

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

.page-header h1 {
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.content-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.content-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-dark);
    font-weight: 600;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info {
    background-color: var(--color-light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-dark);
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-text);
}

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

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

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

    .process-step {
        flex: 1 1 100%;
    }

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

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

    .contact-form {
        padding: 30px 20px;
    }

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