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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0e6d6;
    color: #5a4a3a;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #d4c5b0;
}

.main-nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #3a2f25;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #8b6f47;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2a2118;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #4a3d33;
    margin-bottom: 20px;
    max-width: 540px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.intro-content h2 {
    font-size: 36px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.intro-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

.services-preview {
    padding: 80px 30px;
    background-color: #fafafa;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 38px;
    color: #2a2118;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 18px;
    color: #5a4a3a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    color: #2a2118;
    margin: 25px 25px 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #5a4a3a;
    margin: 0 25px 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    color: #8b6f47;
    margin: 0 25px 25px;
    font-weight: 700;
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #3a2f25;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
}

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

.cta-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-section {
    padding: 80px 30px;
    background-color: #fff;
}

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

.form-container h2 {
    font-size: 36px;
    color: #2a2118;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: #3a2f25;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d4c5b0;
    background-color: #fafafa;
    color: #333;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #8b6f47;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6d5536;
}

.trust-split {
    display: flex;
    min-height: 450px;
}

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

.trust-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f0eb;
}

.trust-content h2 {
    font-size: 34px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.trust-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.main-footer {
    background-color: #2a2118;
    color: #d4c5b0;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #f5f0eb;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: #d4c5b0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #4a3d33;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3a2f25;
    color: #fff;
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #8b6f47;
    color: #fff;
}

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

.btn-reject {
    background-color: #5a4a3a;
    color: #fff;
}

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

.page-hero {
    background-color: #3a2f25;
    color: #fff;
    padding: 80px 30px 60px;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.about-content h2 {
    font-size: 34px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 80px 30px;
    background-color: #f5f0eb;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
}

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

.value-item p {
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.team-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.team-content h2 {
    font-size: 34px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.team-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-centered {
    padding: 80px 30px;
    text-align: center;
    background-color: #fafafa;
}

.cta-centered h2 {
    font-size: 38px;
    color: #2a2118;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-centered p {
    font-size: 18px;
    color: #5a4a3a;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #8b6f47;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #6d5536;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-price-display {
    font-size: 28px;
    color: #8b6f47;
    margin-top: 25px;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.contact-info h2 {
    font-size: 34px;
    color: #2a2118;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2a2118;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #5a4a3a;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    padding: 60px 30px;
    background-color: #f5f0eb;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
}

.note-content h2 {
    font-size: 32px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.note-content p {
    font-size: 17px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f0eb;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8b6f47;
    color: #fff;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    color: #2a2118;
    margin-bottom: 25px;
    font-weight: 600;
}

.thanks-container p {
    font-size: 18px;
    color: #5a4a3a;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #8b6f47;
    color: #fff;
}

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

.btn-secondary {
    background-color: #5a4a3a;
    color: #fff;
}

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

.legal-page {
    padding: 60px 30px 100px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #2a2118;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #2a2118;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    color: #3a2f25;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: #5a4a3a;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.legal-container ul li {
    font-size: 16px;
    color: #5a4a3a;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #6d5536;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.gdpr-table thead {
    background-color: #f5f0eb;
}

.gdpr-table th {
    padding: 15px;
    text-align: left;
    font-size: 16px;
    color: #2a2118;
    font-weight: 600;
    border: 1px solid #d4c5b0;
}

.gdpr-table td {
    padding: 15px;
    font-size: 15px;
    color: #5a4a3a;
    border: 1px solid #d4c5b0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .cta-split,
    .trust-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .cta-content,
    .trust-content,
    .about-content,
    .team-content,
    .service-detail-content,
    .contact-info {
        padding: 40px 25px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 34px;
    }

    .section-header h2,
    .intro-content h2,
    .cta-content h2,
    .trust-content h2,
    .about-content h2,
    .team-content h2,
    .cta-centered h2,
    .service-detail-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

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

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

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

    .value-item {
        flex: 1 1 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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