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

:root {
    --primary: #2c5f4e;
    --primary-dark: #1e4437;
    --secondary: #d4a574;
    --text: #333333;
    --text-light: #666666;
    --background: #fafaf8;
    --white: #ffffff;
    --accent: #8fa68f;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.ad-disclosure {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background-color: var(--white);
}

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

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

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 14px 34px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-center:hover {
    background-color: var(--primary-dark);
}

.intro-section {
    background-color: var(--accent);
    padding: 80px 30px;
    text-align: center;
}

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

.intro-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.intro-wrapper p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
}

.split-reverse,
.split-section {
    display: flex;
    min-height: 550px;
}

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

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background-color: var(--white);
}

.split-content.left-align {
    background-color: var(--background);
}

.split-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

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

.split-content blockquote {
    font-size: 20px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.split-content cite {
    color: var(--text-light);
    font-size: 15px;
}

.services-preview {
    padding: 100px 30px;
    background-color: var(--background);
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.service-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: var(--primary-dark);
}

.service-card p {
    padding: 0 25px 15px;
    color: var(--text-light);
    font-size: 15px;
}

.service-card .price {
    display: block;
    padding: 0 25px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.cta-section {
    background-color: var(--secondary);
    padding: 80px 30px;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary);
}

.trust-badges {
    padding: 70px 30px;
    background-color: var(--white);
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.badge-text {
    font-size: 16px;
    color: var(--text-light);
}

.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 70px 30px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

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

.footer-col p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.8;
}

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

.footer-col ul a {
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
}

.email-display {
    margin-top: 15px;
    cursor: default;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    text-align: center;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-bottom p:last-child {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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;
    font-size: 14px;
    color: var(--text-light);
    min-width: 280px;
}

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

.btn-accept {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--text-light);
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-reject:hover {
    border-color: var(--text);
}

.cookie-content a {
    font-size: 14px;
    color: var(--primary);
    text-decoration: underline;
}

.page-header {
    background-color: var(--primary);
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--white);
    opacity: 0.9;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #d5d8e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    background-color: var(--white);
    padding: 80px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--background);
    border-radius: 8px;
}

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

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

.services-grid {
    padding: 80px 30px;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: var(--background);
}

.service-item-image {
    flex: 0 0 300px;
    background-color: #d8d5e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-item-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-item-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-item-content .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.booking-section {
    background-color: var(--primary);
    padding: 80px 30px;
}

.booking-section h2 {
    text-align: center;
    font-size: 34px;
    color: var(--white);
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: var(--primary-dark);
}

.contact-grid {
    padding: 80px 30px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

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

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

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

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map span {
    color: var(--text-light);
    font-size: 14px;
}

.legal-content {
    padding: 80px 30px;
    background-color: var(--white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-wrapper ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-wrapper ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    background-color: var(--background);
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

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

    .hero-content {
        padding: 50px 30px;
    }

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

    .hero-image {
        min-height: 350px;
    }

    .split-reverse,
    .split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 30px;
    }

    .split-image {
        min-height: 350px;
    }

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

    .about-image img {
        height: 300px;
    }

    .service-item {
        flex-direction: column;
        padding: 30px;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item-image {
        flex: none;
        width: 100%;
    }

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .badges-wrapper {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 30px;
    }

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

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

    .booking-form {
        padding: 30px 20px;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}
