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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.site-header {
    background-color: #2c5f2d;
    padding: 20px 0;
    position: sticky;
    top: 37px;
    z-index: 999;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c5f2d;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 650px;
}

.intro-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 25px;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    color: #555;
}

.service-card .price {
    font-size: 20px;
    font-weight: bold;
    color: #2c5f2d;
    margin: 15px 20px;
}

.btn-select {
    margin: 0 20px;
    padding: 12px 30px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.approach-text {
    flex: 1 1 400px;
}

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

.approach-text p {
    font-size: 17px;
    margin-bottom: 18px;
}

.approach-image {
    flex: 1 1 400px;
    background-color: #c8e6c9;
}

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

.form-section {
    padding: 90px 0;
    background-color: #34495e;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.form-wrapper > p {
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c5f2d;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    border-left: 5px solid #2c5f2d;
    border-radius: 5px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 15px;
    font-style: italic;
    color: #7f8c8d;
}

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

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #a8d5ba;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #a8d5ba;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
}

.cookie-content a {
    color: #a8d5ba;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

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

.page-hero {
    background-color: #2c5f2d;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 20px;
    color: #ecf0f1;
}

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

.about-intro {
    margin-bottom: 60px;
}

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

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.about-image-section {
    margin-bottom: 60px;
    background-color: #e8f5e9;
}

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

.about-philosophy {
    margin-bottom: 60px;
}

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

.about-philosophy p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

.value-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.team-approach {
    padding: 70px 0;
    background-color: #e8f5e9;
}

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

.team-approach p {
    font-size: 17px;
    margin-bottom: 18px;
}

.services-detail {
    padding: 80px 0;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: #2c5f2d;
    margin: 25px 0;
}

.btn-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.service-detail-image {
    flex: 1 1 400px;
    background-color: #c8e6c9;
}

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

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

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

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

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

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

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

.contact-map {
    flex: 1 1 400px;
    background-color: #e8f5e9;
}

.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.contact-note {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.contact-note p {
    font-size: 17px;
    margin-bottom: 15px;
}

.contact-note a {
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1 1 450px;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 18px;
}

.thanks-content a {
    color: #2c5f2d;
    font-weight: 600;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.thanks-image {
    flex: 1 1 400px;
    background-color: #e8f5e9;
}

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

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

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

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

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

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .services-grid {
        gap: 20px;
    }

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

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

    .form-wrapper {
        padding: 30px;
    }

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

    .main-nav {
        gap: 15px;
    }

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