* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8b7355;
}

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #fff;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6f5a42;
}

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

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

.story-section {
    padding: 90px 0;
    background-color: #f8f6f4;
}

.story-card {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.insight-section {
    padding: 90px 0;
    background-color: #fff;
}

.insight-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.insight-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    padding: 90px 0;
    background-color: #f8f6f4;
}

.services-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8e6e3;
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #6f5a42;
}

.trust-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.trust-card {
    flex: 1;
    padding: 35px;
    background-color: #f8f6f4;
    border-radius: 6px;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.testimonials-section {
    padding: 90px 0;
    background-color: #f8f6f4;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
}

.form-section {
    padding: 90px 0;
    background-color: #fff;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    background-color: #f8f6f4;
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #6f5a42;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f6f4;
}

.disclaimer {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.btn-cookie.accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-cookie.accept:hover {
    background-color: #6f5a42;
}

.btn-cookie.reject {
    background-color: #555;
    color: #fff;
}

.btn-cookie.reject:hover {
    background-color: #444;
}

.page-hero {
    background-color: #8b7355;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

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

.service-detail-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: #e8e6e3;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-service {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-service:hover {
    background-color: #6f5a42;
}

.about-content-section {
    padding: 80px 0;
}

.about-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    background-color: #e8e6e3;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.cta-about-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.cta-about-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-about-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

.btn-primary-large {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #6f5a42;
}

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

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

.contact-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info-section .btn-primary {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.contact-info-section .btn-primary:hover {
    background-color: #6f5a42;
}

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #8b7355;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-info {
    background-color: #f8f6f4;
    padding: 25px;
    border-radius: 6px;
    margin: 35px 0;
}

.thanks-info p {
    font-size: 17px;
    color: #333;
}

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

.btn-primary {
    display: inline-block;
    background-color: #8b7355;
    color: #fff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6f5a42;
}

.btn-secondary {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.legal-section {
    padding: 80px 0;
    background-color: #fff;
}

.legal-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-section h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookies-table th {
    background-color: #f8f6f4;
    font-weight: 600;
    color: #333;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .story-card {
        flex-direction: column;
        padding: 40px 30px;
    }

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        padding: 30px;
    }

    .about-block,
    .about-block.reverse {
        flex-direction: column;
    }

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

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

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

    .nav-menu {
        display: none;
    }
}