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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #a8d5ba;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav-menu li a:hover {
    color: #a8d5ba;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }

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

    .hamburger {
        display: flex;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #2d5a3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85), rgba(45, 90, 61, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #4a9d5f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #3d8550;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 157, 95, 0.4);
}

.intro-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.image-section {
    width: 100%;
    overflow: hidden;
}

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

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

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

.features-section h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a472a;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

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

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

.card-content {
    padding: 1.75rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.card-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a9d5f;
    margin-bottom: 1.25rem;
}

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

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

.benefits-section {
    background-color: #e8f5ed;
    padding: 6rem 2rem;
}

.benefits-content {
    flex: 1 1 50%;
    padding-right: 3rem;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9d5f;
    font-weight: 700;
    font-size: 1.5rem;
}

.benefits-section .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a472a;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

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

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a472a;
}

.step p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.form-section {
    background-color: #1a472a;
    padding: 6rem 2rem;
    color: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.form-section p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #a8d5ba;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.selected-service {
    background-color: #e8f5ed;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #1a472a;
    font-weight: 600;
    text-align: center;
}

.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.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-button:hover {
    background-color: #3d8550;
}

.disclaimer-section {
    background-color: #f8faf9;
    padding: 3rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #0f2818;
    color: #a8d5ba;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #2d5a3d;
    padding-top: 2rem;
    text-align: center;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a472a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #4a9d5f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #3d8550;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-header {
    background: linear-gradient(135deg, #1a472a, #2d5a3d);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #a8d5ba;
}

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

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.about-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    background-color: #e8f5ed;
    padding: 6rem 2rem;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

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

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

.experience-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a472a;
    text-align: center;
}

.experience-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.experience-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.experience-block p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    background-color: #f8faf9;
    padding: 6rem 2rem;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.approach-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #a8d5ba;
}

.services-detail-section {
    padding: 4rem 2rem;
    background-color: #f8faf9;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1 1 50%;
    min-width: 300px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: #1a472a;
}

.service-info p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-info ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #4a5568;
}

.service-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9d5f;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #4a9d5f;
    margin: 1.5rem 0;
}

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

.contact-info-block {
    margin-bottom: 4rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-description {
    margin-top: 4rem;
}

.contact-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.contact-description p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.location-section {
    background-color: #e8f5ed;
    padding: 5rem 2rem;
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.location-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #e8f5ed;
    min-height: 400px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a472a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-confirmation .highlight {
    font-size: 1.1rem;
    color: #1a472a;
}

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

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #1a472a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1a472a;
}

.secondary-button:hover {
    background-color: #1a472a;
    color: #ffffff;
}

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

.next-steps-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a472a;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.step-box {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    max-width: 350px;
    background-color: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-box .step-number {
    background-color: #4a9d5f;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.step-box p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: #1a472a;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a472a;
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5a3d;
}

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

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
    color: #4a5568;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .feature-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .benefits-section .container {
        flex-direction: column;
    }

    .benefits-content {
        padding-right: 0;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}