* {
    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: #f8f9fa;
}

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #2c5f2d;
}

.hero-card {
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8f5e9;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.85), rgba(76, 175, 80, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f2d;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.intro-card h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.intro-card p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.services-grid {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
    background-color: #e8f5e9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.6rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.25rem;
}

.select-service {
    padding: 0.875rem 1.5rem;
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #45a049;
    transform: scale(1.02);
}

.trust-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.trust-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #f1f8f4;
    border-radius: 12px;
    border-left: 5px solid #4caf50;
}

.trust-card h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.trust-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.citation {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #2c5f2d;
}

.form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.form-card h2 {
    font-size: 2.2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.form-card > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #2c5f2d;
    font-weight: 600;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fff8e1;
}

.disclaimer-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #ffc107;
}

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

.disclaimer-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4caf50;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

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

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

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

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

.references-list {
    padding-left: 1.25rem;
    font-size: 0.85rem;
}

.references-list li {
    margin-bottom: 0.75rem;
    color: #bbb;
}

.references-list a {
    color: #4caf50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #66bb6a;
}

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

.footer-bottom p {
    color: #bbb;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 1.5rem;
    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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1;
}

.cookie-content a {
    color: #4caf50;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #45a049;
    transform: scale(1.02);
}

.cookie-btn.reject {
    background-color: #757575;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #616161;
    transform: scale(1.02);
}

.thanks-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-card p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-info {
    background-color: #f1f8f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-info strong {
    color: #2c5f2d;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #4caf50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-link:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.legal-section {
    padding: 4rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
}

.updated-date {
    font-style: italic;
    color: #888;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

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

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

    .service-card {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
    }
}