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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }
}

.hero-section {
    margin-top: -1px;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    color: white;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.card-body {
    padding: 25px;
}

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

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

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

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.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 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

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

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.testimonials h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.main-footer {
    background-color: #2a2a2a;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    color: #b0b0b0;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    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;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

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

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

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

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

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    border-radius: 8px;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

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

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.team-member p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

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

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    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 {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.info-block h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.note {
    font-size: 14px;
    font-style: italic;
    color: #999;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #d0d0d0;
    border-radius: 8px;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 4px;
}

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

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

.contact-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.thanks-details {
    margin-bottom: 40px;
}

.selected-service {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    border-left: 4px solid var(--accent-color);
}

.thanks-info {
    margin-bottom: 50px;
    text-align: left;
}

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

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

.step-item {
    flex: 1;
    min-width: 220px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-contact {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-page {
    padding: 60px 0;
}

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

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

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

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

    .services-grid {
        gap: 20px;
    }

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

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

    .service-detail-layout,
    .service-detail-layout.reverse {
        flex-direction: column;
    }

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