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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e29;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #7a9d54;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e29;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #2c3e29;
    text-decoration: none;
    font-size: 15px;
}

.nav-links a:hover {
    color: #7a9d54;
}

.ad-disclosure {
    font-size: 12px;
    color: #6b7868;
    padding: 4px 12px;
    background-color: #f1f4ed;
    border-radius: 3px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 41, 0.5), rgba(44, 62, 41, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #7a9d54;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #6b8e4a;
}

.intro-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e29;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5647;
}

.image-feature-section {
    padding: 80px 0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content {
    flex: 1;
    padding: 60px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e29;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5647;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e29;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6b7868;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e5e7e3;
    border-radius: 6px;
    overflow: hidden;
}

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e29;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5647;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #7a9d54;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px;
    background-color: #2c3e29;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
}

.select-service:hover {
    background-color: #3a5237;
}

.select-service.selected {
    background-color: #7a9d54;
}

.form-section {
    padding: 100px 40px;
    background-color: #f8f9f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e29;
}

.form-container > p {
    text-align: center;
    color: #6b7868;
    margin-bottom: 40px;
    font-size: 16px;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    border: 1px solid #e5e7e3;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5cc;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #7a9d54;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #6b8e4a;
}

.submit-button:disabled {
    background-color: #d1d5cc;
    cursor: not-allowed;
}

.form-note {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #7a9d54;
    font-weight: 500;
}

.trust-section {
    padding: 100px 40px;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e29;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5647;
}

.visual-break {
    height: 500px;
    overflow: hidden;
}

.full-width-image {
    height: 100%;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    padding: 80px 40px;
    background-color: #fafbf8;
}

.disclaimer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e29;
    text-align: center;
}

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

.main-footer {
    background-color: #2c3e29;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

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

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.8;
}

.contact-page {
    padding: 80px 40px;
    min-height: 60vh;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e29;
}

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

.info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e29;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5647;
    margin-bottom: 8px;
}

.legal-page {
    padding: 80px 40px;
    min-height: 60vh;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e29;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e29;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e29;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5647;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5647;
}

.thanks-page {
    padding: 100px 40px;
    min-height: 60vh;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #7a9d54;
}

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

.thanks-content .selected-service {
    font-weight: 600;
    color: #2c3e29;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #7a9d54;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
}

.thanks-content a:hover {
    background-color: #6b8e4a;
}

@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
    }

    .split-content {
        padding: 40px;
    }

    .service-card {
        width: calc(50% - 16px);
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .intro-section {
        padding: 60px 24px;
    }

    .services-preview {
        padding: 60px 24px;
    }

    .service-card {
        width: 100%;
    }

    .form-section {
        padding: 60px 24px;
    }

    .main-form {
        padding: 28px;
    }

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