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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e25;
    background-color: #ffffff;
}

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

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7e3;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3f5d35;
    text-decoration: none;
}

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

.main-nav a {
    color: #2c3e25;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #5a7c4d;
}

.ad-notice {
    font-size: 12px;
    color: #777;
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 3px;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #ffffff;
    max-width: 600px;
}

.intro-section {
    padding: 80px 0;
    background-color: #f9faf8;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #3f5d35;
    text-align: center;
}

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.section-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e25;
}

.section-intro p {
    font-size: 18px;
    color: #5a6c52;
}

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

.service-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9faf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-image {
    flex: 1 1 400px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.service-info {
    flex: 1 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e25;
}

.service-info p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #3f5d35;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #5a7c4d;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #4d6b3f;
}

.form-section {
    padding: 100px 0;
    background-color: #f0f3ed;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e25;
}

.form-wrapper > p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 40px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e25;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d4cc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a7c4d;
}

.btn-submit {
    background-color: #5a7c4d;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #4d6b3f;
}

.trust-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e25;
}

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

.trust-item {
    flex: 1 1 300px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3f5d35;
}

.trust-item p {
    font-size: 16px;
    color: #5a6c52;
    line-height: 1.7;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #6b7467;
    line-height: 1.8;
    text-align: center;
}

.site-footer {
    background-color: #2c3e25;
    color: #d0d4cc;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e25;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #5a7c4d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4d6b3f;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-header {
    padding: 80px 0 60px;
    background-color: #f0f3ed;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e25;
}

.page-header p {
    font-size: 18px;
    color: #5a6c52;
}

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

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-detail-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e25;
}

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

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

.service-detail-content ul li {
    font-size: 15px;
    color: #5a6c52;
    margin-bottom: 8px;
}

.service-price-detail {
    font-size: 24px;
    font-weight: 700;
    color: #3f5d35;
}

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

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

.cta-section p {
    font-size: 18px;
    color: #e8ede5;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #3f5d35;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

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

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

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e25;
}

.about-text p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
}

.about-values {
    margin-bottom: 80px;
}

.about-values h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e25;
    text-align: center;
}

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

.value-item {
    flex: 1 1 300px;
    padding: 30px;
    background-color: #f9faf8;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3f5d35;
}

.value-item p {
    font-size: 16px;
    color: #5a6c52;
    line-height: 1.7;
}

.about-approach {
    margin-bottom: 80px;
    background-color: #f0f3ed;
    padding: 60px 40px;
    border-radius: 8px;
}

.about-approach h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e25;
}

.about-approach p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-approach ul {
    padding-left: 20px;
}

.about-approach ul li {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-experience {
    max-width: 800px;
    margin: 0 auto;
}

.experience-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e25;
}

.experience-text p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1 1 400px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e25;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3f5d35;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c52;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9faf8;
    border-radius: 5px;
}

.contact-note p {
    font-size: 14px;
    color: #5a6c52;
    line-height: 1.6;
}

.contact-visual {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e25;
    text-align: center;
}

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

.process-step {
    flex: 1 1 250px;
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5a7c4d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #3f5d35;
}

.step-content p {
    font-size: 14px;
    color: #5a6c52;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e25;
}

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

.service-confirmation {
    font-weight: 600;
    color: #3f5d35;
    font-size: 20px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3f5d35;
    border: 2px solid #5a7c4d;
    padding: 13px 38px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #5a7c4d;
    color: #ffffff;
}

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

.legal-intro {
    font-size: 18px;
    color: #5a6c52;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e25;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e25;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #3f5d35;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #5a6c52;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #6b7467;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .service-card {
        flex-direction: column;
    }

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

    .about-main {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}