* {
    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: #ffffff;
}

.minimal-nav {
    padding: 2rem 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #2c2c2c;
}

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

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

.nav-links a:hover {
    opacity: 0.6;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-minimal {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5%;
    background: #f9f9f9;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 3rem;
}

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

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

.intro-section {
    padding: 8rem 5%;
    background: #ffffff;
}

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

.intro-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #444;
}

.story-section {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background: #e8e8e8;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

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

.values-minimal {
    padding: 8rem 5%;
    background: #ffffff;
}

.values-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 5rem;
}

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

.value-card {
    flex: 1;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.services-preview {
    padding: 8rem 5%;
    background: #f9f9f9;
}

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

.services-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.service-details h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #2c2c2c;
}

.service-select {
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.service-select:hover {
    background: #444;
}

.form-section {
    padding: 8rem 5%;
    background: #ffffff;
}

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

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e8e8e8;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background: #ffffff;
}

.submit-btn {
    padding: 1.25rem 3rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background: #444;
}

.testimonials-minimal {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.testimonials-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 5rem;
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #888;
}

.final-cta {
    padding: 8rem 5%;
    background: #2c2c2c;
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s ease;
}

.cta-primary:hover {
    opacity: 0.8;
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    color: #2c2c2c;
    border: 1px solid #2c2c2c;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
}

.minimal-footer {
    background: #f9f9f9;
    padding: 5rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2c2c2c;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 2rem 5%;
    z-index: 10000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 8rem 5% 4rem;
    background: #f9f9f9;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #666;
}

.about-intro {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.about-image-section {
    padding: 4rem 5%;
    background: #f9f9f9;
}

.about-image-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #e8e8e8;
}

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

.methodology {
    padding: 8rem 5%;
    background: #ffffff;
}

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

.methodology-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.method-item {
    margin-bottom: 3rem;
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

.team-section {
    padding: 8rem 5%;
    background: #f9f9f9;
}

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

.team-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.team-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-image {
    flex: 1;
    background: #e8e8e8;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.values-expanded {
    padding: 8rem 5%;
    background: #ffffff;
}

.values-expanded h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.value-detail {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.value-detail h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.value-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.cta-section {
    padding: 8rem 5%;
    background: #f9f9f9;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-detailed {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.services-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 5rem;
    text-align: center;
}

.service-card-detailed {
    margin-bottom: 6rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-card-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.price {
    font-size: 2rem;
    font-weight: 300;
}

.select-service-btn {
    padding: 1rem 2.5rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service-btn:hover {
    background: #444;
}

.additional-services {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.additional-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.additional-grid {
    display: flex;
    gap: 3rem;
}

.additional-item {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
}

.additional-item h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.additional-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.booking-prompt {
    padding: 6rem 5%;
    background: #ffffff;
    text-align: center;
}

.booking-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.booking-container p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

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

.contact-email {
    font-weight: 400;
    color: #2c2c2c;
}

.hours-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    background: #e8e8e8;
}

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

.location-section {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.location-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.location-container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4rem;
    text-align: center;
}

.service-areas {
    display: flex;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-list {
    flex: 1;
}

.area-list h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.area-list ul {
    list-style: none;
}

.area-list li {
    font-size: 1rem;
    color: #666;
    padding: 0.5rem 0;
}

.inquiry-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.inquiry-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
}

.inquiry-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 8rem 5%;
    background: #f9f9f9;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1rem;
    color: #2c2c2c;
    padding: 1rem;
    background: #ffffff;
    border-left: 3px solid #2c2c2c;
}

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

.thanks-image {
    flex: 1;
    background: #e8e8e8;
}

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

.next-steps {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.next-steps-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 4rem;
}

.step {
    flex: 1;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 4rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .story-grid,
    .team-content,
    .values-grid,
    .testimonial-cards,
    .contact-container,
    .thanks-container,
    .service-areas,
    .steps-grid,
    .additional-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .service-card-detailed,
    .service-card-detailed:nth-child(even) {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .minimal-nav {
        padding: 1.5rem 5%;
    }

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

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

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