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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b9d77;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234b3d;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #c29563;
}

.intro-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-main {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 25px 20px 25px;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background-color: #7a8a6a;
}

.form-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.form-wrapper {
    flex: 1;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
}

.main-form label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.main-form input,
.main-form textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
}

.main-form input:focus,
.main-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #234b3d;
}

.btn-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.values-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-image {
    flex: 1;
    background-color: var(--secondary-color);
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 60px 30px 60px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-light);
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: var(--bg-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-light);
    margin-bottom: 15px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #999999;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 60px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: #234b3d;
}

.cookie-btn.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 100px 60px 60px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-light);
}

.about-split {
    display: flex;
    padding: 60px 60px;
    gap: 60px;
    align-items: center;
}

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

.about-image {
    flex: 1;
    background-color: var(--bg-light);
    height: 400px;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-values {
    padding: 80px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.about-values h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-white);
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.services-detail {
    padding: 60px 60px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
    height: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.services-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    padding: 60px 60px;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
    height: 500px;
}

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

.contact-cta {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 60px;
    text-align: center;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 60px 60px 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

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

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: #234b3d;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split,
    .intro-split,
    .values-split,
    .form-container-split,
    .about-split,
    .service-detail-item,
    .contact-split,
    .footer-content {
        flex-direction: column;
    }

    .hero-content,
    .intro-text,
    .values-text,
    .about-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .service-card {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
