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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c89f7e;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-right a {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.hero-left h1 {
    max-width: 600px;
}

.hero-left p {
    max-width: 550px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
    position: relative;
}

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

.btn-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.intro-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.container-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

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

.content-left {
    flex: 1;
    background-color: var(--border-color);
}

.content-left img {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.content-right {
    flex: 1;
    padding: 2rem 0;
}

.content-right h2 {
    margin-bottom: 1.5rem;
}

.content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-grid {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center p {
    font-size: 1.15rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 2rem);
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 300px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    color: var(--success-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.trust-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.container-centered {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.trust-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-main {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    color: var(--bg-white);
    margin: 0;
    flex: 1;
}

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

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    padding: 0.8rem 2rem;
    border: 2px solid var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.page-hero {
    background-color: var(--bg-light);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.about-story {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.philosophy-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.values-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    flex: 0 0 calc(50% - 1.25rem);
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.team-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.cta-section-bottom {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cta-section-bottom h2,
.cta-section-bottom p {
    color: var(--bg-white);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail {
    padding: 4rem 0;
}

.detail-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    background-color: var(--border-color);
}

.detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.detail-content {
    flex: 1;
    padding: 2rem 0;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.btn-inline {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.contact-info-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    line-height: 1.8;
}

.email-display {
    color: var(--text-dark);
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.location-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.transport-info {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.transport-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.transport-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-cta {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.thanks-hero {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.next-steps {
    margin: 4rem 0;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.step-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.legal-content {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    margin-bottom: 1rem;
}

.updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.legal-content ul {
    list-style: disc;
    margin-left: 1.8rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.url-display {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-light);
}

.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .container-split,
    .detail-split {
        flex-direction: column;
    }

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

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 0 0 100%;
        max-width: 500px;
    }

    .trust-grid,
    .steps-grid,
    .transport-info {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-left,
    .content-right {
        padding: 3rem 5%;
    }

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

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}