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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

.navigation {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

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

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

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

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.intro-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

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

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

.intro-right {
    flex: 1;
}

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

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

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

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

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

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

.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: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 24px 20px;
    line-height: 1.6;
}

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

.trust-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

.trust-content {
    flex: 1;
}

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

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

.booking-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.booking-intro p {
    font-size: 17px;
    color: var(--text-light);
}

.booking-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    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-color);
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    text-align: center;
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    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;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

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

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

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

.about-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

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

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

.about-content {
    flex: 1;
}

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

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

.values-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.values-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.team-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.team-content {
    flex: 1;
}

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

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

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

.commitment-section {
    background-color: var(--bg-light);
    text-align: center;
    padding: 80px 20px;
    margin: 80px 0 0;
}

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.commitment-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.commitment-section .cta-button {
    margin-top: 32px;
}

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

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

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

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature {
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: 6px;
    font-size: 15px;
    color: var(--text-dark);
}

.service-pricing {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.guarantee-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
    text-align: center;
}

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

.guarantee-section p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.cta-services {
    text-align: center;
    padding: 80px 20px;
}

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

.contact-main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
}

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

.legal-section {
    background-color: var(--bg-light);
    padding: 60px 20px;
    margin: 60px 0;
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.legal-block {
    flex: 1;
}

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

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

.cta-contact {
    text-align: center;
    padding: 80px 20px;
}

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

.thanks-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-content {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

#serviceSelected {
    font-weight: 600;
    color: var(--text-dark);
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.steps {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

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

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

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

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

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

.last-update {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-page .legal-section {
    background-color: transparent;
    padding: 0;
    margin: 40px 0;
}

.legal-page h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-split,
    .intro-section,
    .trust-section,
    .about-split,
    .team-split,
    .service-item-detail,
    .contact-main {
        flex-direction: column;
    }

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
    }

    .values-grid,
    .steps,
    .legal-content {
        flex-direction: column;
    }

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

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