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

.ad-disclosure {
    background-color: #e8f4f8;
    color: #2d5f7f;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #c7dce6;
}

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

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

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

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

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

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

.hero-card {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content {
    padding: 80px 60px;
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3d28 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

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

.hero-visual {
    background-color: #e8f4e8;
}

.hero-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5f3f;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.cta-secondary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.intro-cards {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.info-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: #2d5f3f;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-highlight {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 340px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #e8eef4;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #2d5f3f;
    margin-bottom: 16px;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1a3d28;
    transform: translateY(-2px);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3d28 0%, #2d5f3f 100%);
}

.cta-card {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    color: #2d5f3f;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: #4b5563;
    color: #ffffff;
}

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

.page-header {
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3d28 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

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

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

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.card-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8f4e8;
}

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

.card-text {
    flex: 1;
    min-width: 300px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text h2 {
    color: #2d5f3f;
    font-size: 2rem;
    margin-bottom: 24px;
}

.card-text p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #2d5f3f;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-simple {
    background-color: #2d5f3f;
    padding: 80px 0;
    text-align: center;
}

.cta-simple h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 32px;
}

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

.service-detail-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef4;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    color: #2d5f3f;
    font-size: 1.9rem;
    margin-bottom: 24px;
}

.service-detail-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.price-box {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-weight: 600;
    color: #5a6c7d;
}

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

.process-section {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5f3f;
    margin-bottom: 60px;
}

.process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.process-card {
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    flex: 1;
    min-width: 240px;
    max-width: 270px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d5f3f;
    opacity: 0.2;
    margin-bottom: 16px;
}

.process-card h3 {
    color: #2d5f3f;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card-main {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-card-main h2 {
    color: #2d5f3f;
    font-size: 2rem;
    margin-bottom: 36px;
}

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

.contact-item h3 {
    color: #2d5f3f;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.8;
}

.email-display {
    color: #5a6c7d;
    cursor: text;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef4;
    border-radius: 16px;
    overflow: hidden;
}

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

.contact-cta {
    background-color: #f0f4f8;
    padding: 80px 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    color: #2d5f3f;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: #5a6c7d;
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-card h1 {
    color: #2d5f3f;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.thanks-details {
    font-size: 1.1rem;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 24px;
}

.thanks-card p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #f0f4f8;
    color: #2d5f3f;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    color: #2d5f3f;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 40px;
}

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

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

.legal-content h3 {
    color: #2d5f3f;
    font-size: 1.4rem;
    margin-top: 28px;
    margin-bottom: 16px;
}

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

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

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

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a3d28;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 48px 32px;
    }

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

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

    .hero-visual img {
        height: 300px;
    }

    .services-highlight h2,
    .values-section h2,
    .process-section h2 {
        font-size: 1.8rem;
    }

    .about-card,
    .service-detail-card {
        flex-direction: column;
    }

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

    .card-text,
    .service-detail-content {
        padding: 32px;
    }

    .form-card {
        padding: 32px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .page-header {
        padding: 48px 0 36px;
    }

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

    .thanks-card {
        padding: 36px;
    }

    .thanks-card h1 {
        font-size: 1.8rem;
    }

    .cta-box,
    .cta-card {
        padding: 36px;
    }
}