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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #2d6a4f;
}

.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1b4332;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    color: #40916c;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.cta-button:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.hero-image {
    flex: 1;
    background-color: #d8f3dc;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 38px;
    color: #1b4332;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    color: #1b4332;
    margin: 25px 25px 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 25px 20px;
    line-height: 1.7;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    color: #2d6a4f;
    font-weight: 700;
    margin: 0 25px 20px;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.contact-form-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 50px;
    font-weight: 700;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    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: #2d6a4f;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.why-choose-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #d8f3dc 0%, #b7e4c7 100%);
}

.why-content h2 {
    text-align: center;
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 24px;
    color: #1b4332;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonials-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #2d6a4f;
    font-weight: 600;
    font-style: normal;
}

.final-cta-section {
    padding: 90px 20px;
    background-color: #1b4332;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta-section p {
    font-size: 19px;
    color: #d8f3dc;
    margin-bottom: 35px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #ffffff;
    color: #1b4332;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #d8f3dc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.site-footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #495057;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    color: #868e96;
    line-height: 1.6;
    max-width: 900px;
    margin: 15px auto 0;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.cookie-accept {
    background-color: #2d6a4f;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1b4332;
}

.cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.cookie-link {
    color: #74c0fc;
    font-size: 14px;
    text-decoration: underline;
}

.about-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #1b4332;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    color: #40916c;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.about-content h2 {
    font-size: 36px;
    color: #1b4332;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 25px;
}

.team-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.team-member-image {
    width: 100%;
    height: 300px;
    background-color: #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 24px;
    color: #1b4332;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #1b4332;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-content {
    padding: 90px 20px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 32px;
    color: #1b4332;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.info-item h3 {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 18px;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #1b4332;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.legal-content p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-page {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #1b4332;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 20px;
    color: #40916c;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-content a {
    display: inline-block;
    padding: 16px 38px;
    background-color: #2d6a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #1b4332;
    transform: translateY(-2px);
}

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

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

    .nav-menu {
        gap: 20px;
    }

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

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

    .testimonials-wrapper {
        flex-direction: column;
    }

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

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