* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d7a3e;
    --secondary-color: #1a4d29;
    --accent-color: #4a9d5f;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.ad-disclosure {
    background-color: var(--bg-gray);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 500px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 60px 30px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-gray);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.card-grid {
    display: flex;
    gap: 40px;
}

.intro-card {
    flex: 1.5;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background-color: #f9fafb;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.stats-card {
    flex: 1;
    background-color: var(--primary-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-light);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 8px;
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-gray);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service-btn,
.select-service-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.select-service-btn:hover,
.select-service-link:hover {
    background-color: var(--primary-color);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 16px;
    color: #666;
}

.selected-service-info {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.selected-service-info p {
    margin: 5px 0;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--bg-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.trust-section {
    padding: 60px 0;
    background-color: var(--bg-gray);
    text-align: center;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.trust-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.trust-section a:hover {
    text-decoration: underline;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonial-cards {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: var(--bg-gray);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: #fff9e6;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--text-light);
}

.reference-item {
    margin-bottom: 12px;
}

.reference-item a {
    display: inline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 25px 30px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.cookie-btn.accept:hover {
    background-color: var(--accent-color);
}

.cookie-btn.reject {
    background-color: #666;
    color: var(--text-light);
}

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

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero .subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.content-card-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.card-image {
    flex: 1;
    background-color: var(--bg-gray);
}

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

.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.card-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.services-detail-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact-info-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-gray);
}

.location-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
    text-align: center;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.location-section p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-benefits {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.location-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.location-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.location-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.benefit-item {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-confirmation {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-confirmation p {
    margin: 5px 0;
    font-size: 16px;
}

.next-steps {
    background-color: var(--bg-gray);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .content-card,
    .content-card.reverse {
        flex-direction: column;
    }

    .values-grid,
    .benefits-grid {
        flex-direction: column;
    }

    .value-card,
    .benefit-item {
        flex: 1 1 100%;
    }

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

    .location-benefits {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}