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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: #999;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 15px;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 70px;
    z-index: 99;
}

.mobile-nav a {
    padding: 15px 20px;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.mobile-nav a:hover {
    background-color: #f5f5f5;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background-color: #f9faf9;
}

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a3a1b;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #c8d8c9;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.split-reverse,
.split-normal {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8f0e8;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a3a1b;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.services-cards {
    padding: 80px 0;
    background-color: #f9faf9;
}

.services-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a1b;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e8f0e8;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a1b;
}

.card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 15px 0;
}

.btn-select {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.split-form {
    flex: 1;
}

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

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

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

.btn-submit {
    padding: 14px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #bbb;
}

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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;
    font-size: 14px;
    margin: 0;
}

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

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

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

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

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

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

.page-hero {
    padding: 80px 0 40px;
    background-color: #f9faf9;
}

.page-hero h1 {
    font-size: 44px;
    color: #1a3a1b;
}

.about-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a1b;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a3a1b;
}

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

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

.services-detail {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 80px;
}

.price-large {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
}

.cta-section {
    padding: 80px 0;
    background-color: #f9faf9;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a3a1b;
}

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

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a3a1b;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8f0e8;
}

.map-section {
    padding: 60px 0;
    background-color: #f9faf9;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a3a1b;
}

.map-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

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

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content strong {
    color: #2c5f2d;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 28px;
    margin: 35px 0 20px;
    color: #1a3a1b;
}

.legal-text h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

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

.legal-text ul {
    margin: 15px 0 15px 25px;
}

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

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

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .split-reverse,
    .split-normal {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

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

    .ad-label {
        font-size: 10px;
        padding: 3px 6px;
        margin: 5px 0;
    }

    .header-content {
        gap: 10px;
    }
}