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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    min-width: 300px;
}

.cookie-content a {
    color: #6dd5ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f3f;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

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

.hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid-intro {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-card {
    flex: 1;
}

.intro-card h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.intro-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #2c5f3f;
    margin-bottom: 60px;
}

.card-grid-services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #2c5f3f;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2c5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4530;
    transform: scale(1.02);
}

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

.card-grid-approach {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.approach-text-card {
    flex: 2;
}

.approach-text-card h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 25px;
}

.approach-text-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.approach-stats-card {
    flex: 1;
    background-color: #2c5f3f;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-item {
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

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

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

.form-card h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #2c5f3f;
    display: none;
}

.selected-service-display.show {
    display: block;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-card-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-card {
    flex: 1;
    min-width: 250px;
}

.footer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-card p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.page-header-card {
    background: linear-gradient(135deg, #2c5f3f 0%, #3d7a54 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header-card h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header-card p {
    font-size: 20px;
    opacity: 0.9;
}

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

.card-grid-about {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-card {
    flex: 1;
}

.about-text-card h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.about-text-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.about-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.values-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 22px;
    color: #2c5f3f;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-section-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-section-card h2 {
    font-size: 32px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.team-section-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.cta-section-about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-card-centered h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.cta-card-centered p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.cta-section-services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-card-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-card-wide h2 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.cta-card-wide p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.contact-content {
    padding: 60px 0;
}

.contact-card-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card,
.legal-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2,
.legal-info-card h2 {
    font-size: 28px;
    color: #2c5f3f;
    margin-bottom: 25px;
}

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

.info-block h3 {
    font-size: 20px;
    color: #2c5f3f;
    margin-bottom: 10px;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.legal-info-card h3 {
    font-size: 20px;
    color: #2c5f3f;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-info-card h4 {
    font-size: 18px;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-info-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.disclaimer-card {
    background-color: #fff8e1;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #ffa726;
}

.disclaimer-card h2 {
    font-size: 24px;
    color: #e65100;
    margin-bottom: 20px;
}

.disclaimer-card p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.8;
}

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

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

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

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

.legal-content-card h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content-card h4 {
    font-size: 18px;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content-card ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legal-content-card ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #2c5f3f;
}

.thanks-next {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 22px;
    color: #2c5f3f;
    margin-bottom: 15px;
}

.thanks-next ul {
    list-style: none;
    color: #555;
}

.thanks-next ul li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5f3f;
    border: 2px solid #2c5f3f;
}

.btn-secondary:hover {
    background-color: #2c5f3f;
    color: #ffffff;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

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

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

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

    .section-title {
        font-size: 32px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .legal-content-card {
        padding: 30px 20px;
    }

    .thanks-card {
        padding: 40px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-card-grid {
        flex-direction: column;
    }
}