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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    background-color: #f5f9f7;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #1b4332;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.15rem;
    color: #40916c;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1b4332;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-section {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: #495057;
    text-align: center;
    line-height: 1.8;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.services-showcase h2 {
    font-size: 2.4rem;
    color: #1b4332;
    text-align: center;
    margin-bottom: 4rem;
}

.service-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #d8f3dc;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-details-right,
.service-details-left {
    flex: 1;
}

.service-details-right h3,
.service-details-left h3 {
    font-size: 1.8rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.service-details-right p,
.service-details-left p {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.4rem;
    color: #1b4332;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: #52b788;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #40916c;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: #1b4332;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1b4332;
}

.why-section {
    padding: 5rem 2rem;
    background-color: #f5f9f7;
}

.why-section h2 {
    font-size: 2.2rem;
    color: #1b4332;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #52b788;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: #2d6a4f;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #495057;
    line-height: 1.6;
}

.main-footer {
    background-color: #1b4332;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #b7e4c7;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #b7e4c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #2d6a4f;
    color: #95d5b2;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #95d5b2;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #52b788;
    color: #ffffff;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1b4332;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.back-home:hover {
    background-color: #1b4332;
}

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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