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

.main-nav {
    background-color: #1a3d2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #86c58a;
}

.ad-label {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.hero-section {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a3d2e;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4e4d8;
}

.cta-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1b4332;
}

.intro-block {
    padding: 5rem 2rem;
    background-color: #fafbfc;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3d2e;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.features-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a3d2e;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.features-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.feature-content {
    padding: 1.8rem;
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 1.2rem;
}

.select-service {
    width: 100%;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1b4332;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f0f4f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a3d2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #5a6c7d;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1b4332;
}

.trust-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a3d2e;
}

.trust-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d6a4f;
}

.trust-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.cta-block {
    padding: 5rem 2rem;
    background-color: #1a3d2e;
    text-align: center;
    color: #ffffff;
}

.cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #1a3d2e;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f4f1;
}

.main-footer {
    background-color: #0f2419;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    display: block;
    color: #b8c9c0;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #b8c9c0;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #b8c9c0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #86c58a;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d6a4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1b4332;
}

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #1a3d2e;
    color: #ffffff;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a3d2e;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a3d2e;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d6a4f;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.content-wrapper-reverse {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f0f4f1;
    text-align: center;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a3d2e;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
}

.team-info {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.team-info p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a3d2e;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #5a6c7d;
}

.service-pricing {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 2px solid #e0e6e3;
    border-bottom: 2px solid #e0e6e3;
}

.price-label {
    font-size: 1rem;
    color: #6c757d;
    margin-right: 1rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d6a4f;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a3d2e;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #2d6a4f;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5568;
}

.contact-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f0f4f1;
    border-radius: 8px;
}

.contact-notice h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a3d2e;
}

.contact-notice p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a3d2e;
}

.faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d6a4f;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.content-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #1a3d2e;
}

.content-container h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 1rem;
    color: #2d6a4f;
}

.content-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.content-container ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-container li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #4a5568;
}

.content-container a {
    color: #2d6a4f;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookies-table th {
    background-color: #f0f4f1;
    font-weight: 600;
    color: #1a3d2e;
}

.cookies-table td {
    color: #4a5568;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a3d2e;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2d6a4f;
}

.thanks-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.thanks-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2d6a4f;
}

.thanks-next {
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a3d2e;
    text-align: center;
}

.steps-list {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #6c757d;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .content-wrapper,
    .content-wrapper-reverse,
    .contact-container,
    .service-block {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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