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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e63946;
    --accent-color: #457b9d;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

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);
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 123, 157, 0.3);
}

.intro-section {
    padding: 5rem 0;
}

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

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

.split-image-left,
.split-image-right {
    flex: 1;
    background-color: var(--bg-light);
}

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

.split-content-left,
.split-content-right {
    flex: 1;
    padding: 4rem;
}

.split-content-left h2,
.split-content-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content-left p,
.split-content-right p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: var(--bg-light);
}

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

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

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

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.btn-select-service {
    padding: 0.875rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #325d7a;
    transform: translateY(-2px);
}

.form-section {
    padding: 5rem 0;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

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

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

.trust-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

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

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

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

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.about-intro {
    padding: 5rem 0;
}

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

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

.values-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-block {
    flex: 1;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1rem;
    color: var(--text-light);
}

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

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.workshop-section {
    padding: 5rem 0;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-block {
    margin-bottom: 4rem;
}

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

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

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

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

.service-detail-content {
    flex: 1;
    padding: 4rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0;
}

.pricing-info {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.pricing-info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.pricing-info-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 5rem 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-map-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-map-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta-section {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.location-info {
    padding: 4rem 2rem;
}

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

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-section {
    padding: 8rem 2rem;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

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

@media (max-width: 968px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

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

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

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

    .process-steps {
        flex-direction: column;
    }

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

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

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .split-content-left,
    .split-content-right {
        padding: 2rem;
    }

    .service-detail-content {
        padding: 2rem;
    }
}