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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

.hero-minimal {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #d4c5b9;
}

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

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #8b7355;
}

.intro-statement {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.content-narrow h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.featured-services-offset {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.service-card-left,
.service-card-right {
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-card-right {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e8dfd6;
}

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

.service-details {
    flex: 1;
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    color: #8b7355;
    margin-bottom: 1rem;
    font-weight: 300;
}

.link-underline {
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 2px;
    font-size: 0.95rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.link-underline:hover {
    color: #8b7355;
    border-color: #8b7355;
}

.philosophy-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.philosophy-visual {
    flex: 1;
    background-color: #e8dfd6;
}

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

.additional-treatments {
    padding: 5rem 2rem;
    background-color: #f5f2ef;
}

.treatments-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.treatment-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
}

.treatment-item h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.treatment-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    color: #8b7355;
    font-weight: 300;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background-color: #8b7355;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-size: 0.95rem;
    color: #f5f2ef;
    font-style: normal;
}

.consultation-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.form-container-centered h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    font-size: 0.9rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #8b7355;
}

.final-statement {
    padding: 5rem 2rem;
    background-color: #f5f2ef;
}

.final-statement h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-statement p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.footer {
    background-color: #2c2c2c;
    color: #d4c5b9;
    padding: 4rem 2rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d4c5b9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background-color: #3a3a3a;
    border-left: 3px solid #8b7355;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c4c4c4;
}

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

.footer-bottom p {
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #8b7355;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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 {
    flex: 1;
    font-size: 0.9rem;
    color: #2c2c2c;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #8b7355;
}

.btn-cookie-reject {
    background-color: #e8e8e8;
    color: #2c2c2c;
}

.btn-cookie-reject:hover {
    background-color: #d4c5b9;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-top: 4px solid #8b7355;
}

.thanks-box h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-box p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-box .selected-service {
    background-color: #f5f2ef;
    padding: 1rem;
    margin: 2rem 0;
    font-size: 1rem;
    color: #2c2c2c;
}

.thanks-box a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-box a:hover {
    background-color: #8b7355;
}

.contact-page-layout {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8dfd6;
}

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

.about-page-layout {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.about-header h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-header p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-page-layout {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.services-header h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.service-listing {
    background-color: #fafafa;
    padding: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

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

.service-listing h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-listing p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-listing-price {
    font-size: 2rem;
    color: #8b7355;
    font-weight: 300;
    white-space: nowrap;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .content-wide,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .service-listing {
        flex-direction: column;
        gap: 1.5rem;
    }
}