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

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    background-color: #fafafa;
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.spacer-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

.centered-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.8;
    color: #2a2a2a;
    text-align: center;
}

.services-preview {
    padding: 100px 20px;
    background-color: #fafafa;
}

.section-title-minimal {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.services-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card-minimal {
    flex: 1 1 320px;
    max-width: 380px;
}

.service-image-wrap {
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

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

.service-card-minimal h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-inline {
    padding: 140px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-content-minimal h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-content-minimal p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.cta-button-primary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #ffffff;
}

.cta-button-primary:hover {
    background-color: transparent;
    color: #ffffff;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    border: 2px solid #1a1a1a;
}

.cta-button-secondary:hover {
    background-color: #333333;
    border-color: #333333;
}

.form-section-minimal {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.form-container-minimal h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #4a4a4a;
    font-size: 16px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.form-group label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #2a2a2a;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-button {
    padding: 18px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #333333;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.testimonial-minimal {
    text-align: center;
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    color: #2a2a2a;
}

.testimonial-minimal cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 80px 40px 20px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

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

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #252525;
    border-left: 3px solid #666;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background-color: #e0e0e0;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-hero-minimal {
    padding: 120px 20px 80px;
    text-align: center;
    background-color: #fafafa;
}

.page-hero-minimal h1 {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
}

.hero-subtitle-services {
    font-size: 18px;
    color: #4a4a4a;
    margin-top: 20px;
}

.content-section-large-spacing {
    padding: 100px 20px;
    background-color: #ffffff;
}

.lead-text-about {
    font-size: 26px;
    line-height: 1.8;
    color: #2a2a2a;
    text-align: center;
}

.image-section-full {
    padding: 0;
    background-color: #e8e8e8;
}

.image-container-full {
    max-width: 1400px;
    margin: 0 auto;
}

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

.centered-narrow h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.centered-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.split-content-section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: #fafafa;
}

.split-left,
.split-right {
    flex: 1;
}

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

.split-right h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.values-list {
    list-style: none;
    font-size: 18px;
    line-height: 2.2;
    color: #2a2a2a;
}

.values-list li:before {
    content: "—";
    margin-right: 10px;
    color: #666;
}

.cta-section-centered {
    padding: 100px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.cta-section-centered h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

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

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

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

.service-text-detailed,
.service-image-detailed {
    flex: 1;
}

.service-text-detailed h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-text-detailed p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.service-includes {
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    margin: 25px 0;
    color: #1a1a1a;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #333333;
}

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

.guarantee-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.guarantee-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
}

.contact-section-minimal {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block,
.contact-image-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.email-display {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 10px;
    display: inline-block;
}

.opening-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

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

.directions-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
    color: #1a1a1a;
}

.directions-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
    color: #2a2a2a;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #2a2a2a;
}

.thanks-details {
    text-align: left;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f5f5f5;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.thanks-details ul {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.9;
    color: #2a2a2a;
}

.thanks-details a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.thanks-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-button:hover {
    background-color: #333333;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #d0d0d0;
    padding: 12px;
    text-align: left;
    font-size: 15px;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #2a2a2a;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .lead-text {
        font-size: 20px;
    }

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

    .split-content-section {
        flex-direction: column;
    }

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

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

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

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