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

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

.nav-main {
    background-color: #fff;
    box-shadow: 0 2px 10px 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;
    height: 70px;
}

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

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

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #fff;
}

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

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

.hero-section 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, 85, 48, 0.9) 0%, rgba(44, 85, 48, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 350px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

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

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

.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-body p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 15px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c5530;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1e3a21;
}

.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.benefit-card {
    flex: 1 1 260px;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.benefit-card:hover {
    background-color: #e8f5e9;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.form-card h2 {
    font-size: 2rem;
    color: #2c5530;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

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

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

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

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

.btn-submit {
    padding: 14px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-card-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1 1 500px;
}

.about-content h2 {
    font-size: 2.3rem;
    color: #2c5530;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

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

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

.value-card {
    flex: 1 1 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.expertise-section {
    padding: 80px 0;
    background-color: #fff;
}

.expertise-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.expertise-text {
    flex: 1 1 500px;
}

.expertise-text h2 {
    font-size: 2.3rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 700;
}

.expertise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.expertise-stats {
    flex: 1 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    flex: 1 1 180px;
    background-color: #2c5530;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #fff;
}

.mission-section {
    padding: 80px 0;
    background-color: #e8f5e9;
}

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-card h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 25px;
    font-weight: 700;
}

.mission-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.price-highlight {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 10px;
}

.price-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

.service-detail-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.cta-card-centered {
    text-align: center;
    color: #fff;
}

.cta-card-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-card-centered p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info-card {
    flex: 1 1 450px;
}

.contact-info-card h2 {
    font-size: 2.3rem;
    color: #2c5530;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.email-display {
    color: #555;
    font-weight: 600;
}

.contact-map-card {
    flex: 1 1 450px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

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

.location-card h2 {
    font-size: 2.3rem;
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

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

.direction-item {
    flex: 1 1 260px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.direction-item h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-card {
    flex: 1 1 350px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.faq-card h3 {
    font-size: 1.2rem;
    color: #2c5530;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #fff;
}

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

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

.thanks-card h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-main {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 20px;
}

.thanks-details {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #2c5530;
    font-weight: 600;
}

.thanks-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #2c5530;
    color: #fff;
}

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

.btn-secondary {
    background-color: #f39c12;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.next-steps {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: #2c5530;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c5530;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.resources-section {
    padding: 80px 0;
    background-color: #e8f5e9;
}

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

.resources-card h2 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: 700;
}

.resources-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.resource-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c5530;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.resource-link:hover {
    background-color: #1e3a21;
}

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

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

.legal-wrapper h1 {
    font-size: 2.8rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 800;
}

.last-updated {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-section a {
    color: #2c5530;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #f39c12;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #2c5530;
    color: #fff;
    font-weight: 700;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

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

    .card-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 100%;
    }

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

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

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