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

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #1e4620;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 12px;
    border-radius: 12px;
    margin: 0 15px;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.85), rgba(30, 70, 32, 0.7));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #fff;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background-color: #fff;
    color: #2c5f2d;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.intro-cards {
    padding: 60px 0;
    background-color: #fff;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.feature-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 220px;
    background-color: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #2c5f2d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}

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

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

.section-header-center h2 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #fff;
    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(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-service {
    width: 100%;
    padding: 12px 20px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cta-card {
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #2c5f2d;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.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 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    padding: 15px 30px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

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

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

.info-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px 25px;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

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

.info-card p {
    font-size: 15px;
    color: #666;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff5e6;
}

.disclaimer-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #ffcc80;
}

.disclaimer-box h3 {
    color: #e65100;
    font-size: 24px;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

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

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

.footer-col {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 20px;
}

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

.cookie-content p {
    flex: 1 1 60%;
    margin: 0;
    font-size: 14px;
    color: #333;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

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

.page-header {
    background: linear-gradient(135deg, #2c5f2d, #1e4620);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

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

.service-detail-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
    display: flex;
    flex-wrap: wrap;
}

.service-detail-text {
    flex: 1 1 55%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-detail-text ul li {
    margin-bottom: 10px;
    color: #666;
}

.service-detail-price {
    font-size: 18px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1 1 45%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

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

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

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

.about-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 40%;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e9ecef;
}

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

.section-title {
    font-size: 38px;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

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

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

.approach-text {
    flex: 1 1 55%;
    min-width: 300px;
}

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

.approach-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-image {
    flex: 1 1 40%;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e9ecef;
}

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

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

.reason-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #2c5f2d;
}

.reason-item h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.reason-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-info-block {
    flex: 1 1 35%;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-form-block {
    flex: 1 1 60%;
    min-width: 300px;
    background-color: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form-block h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.contact-form-block p {
    color: #666;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f2d;
    color: #fff;
    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: #2c5f2d;
    margin-bottom: 20px;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #666;
}

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

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

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

.legal-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    font-style: italic;
    color: #999;
}

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

    .mobile-menu-toggle {
        display: flex;
    }

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

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

    .feature-card {
        flex: 1 1 calc(50% - 12px);
    }

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

    .service-detail-content {
        flex-direction: column;
    }

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

    .service-detail-text {
        padding: 30px;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .about-content,
    .approach-content {
        flex-direction: column;
    }

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

    .form-wrapper,
    .contact-form-block {
        padding: 30px;
    }

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

    .cookie-content p {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

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

@media (max-width: 480px) {
    .header-content {
        justify-content: space-between;
    }

    .ad-disclosure {
        order: 3;
        flex: 1 1 100%;
        text-align: center;
        margin: 10px 0 0 0;
    }

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

    .hero-image {
        height: 350px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

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