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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5b2c6f;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5b2c6f;
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-editorial {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #d4c5b9;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 3rem 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

.story-intro {
    background-color: #fff;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.inline-image-section {
    background-color: #fff;
}

.story-image {
    margin: 2rem 0;
    background-color: #e8e0d5;
}

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

.story-image figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.problem-section,
.insight-section,
.benefits-section {
    background-color: #fff;
}

h2 {
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
    color: #2c2c2c;
}

h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #4a4a4a;
}

p {
    margin-bottom: 1.2rem;
}

.quote-box {
    background-color: #f9f6f3;
    border-left: 4px solid #5b2c6f;
    padding: 2rem;
    margin: 2rem 0;
}

.quote-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-box cite {
    display: block;
    text-align: right;
    font-size: 0.95rem;
    color: #666;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    color: #5b2c6f;
    margin-bottom: 0.5rem;
}

.services-preview {
    background-color: #fff;
    padding: 3rem 0;
}

.service-cards-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: box-shadow 0.3s;
    background-color: #fefefe;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #d4c5b9;
}

.service-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: bold;
    color: #5b2c6f;
    margin: 1rem 1.5rem;
}

.cta-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #5b2c6f;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #7a3c94;
}

.testimonials-inline {
    background-color: #f9f6f3;
}

.testimonial-item {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fff;
    border-left: 3px solid #5b2c6f;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-item cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.booking-section {
    background-color: #fff;
    padding: 3rem 0;
}

.booking-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    font-family: inherit;
    font-size: 1rem;
}

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

.submit-btn {
    background-color: #5b2c6f;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #7a3c94;
}

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 2rem 0;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.cookie-accept {
    background-color: #5b2c6f;
    color: #fff;
}

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

.cookie-reject {
    background-color: #666;
    color: #fff;
}

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

.services-page,
.about-page,
.contact-page,
.thanks-page,
.legal-page {
    min-height: calc(100vh - 200px);
}

.page-header {
    background-color: #5b2c6f;
    color: #fff;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.2rem;
    line-height: 1.6;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #d4c5b9;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-duration {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5b2c6f;
    margin: 1.5rem 0 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.booking-cta {
    background-color: #f9f6f3;
    padding: 3rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background-color: #5b2c6f;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #7a3c94;
}

.about-hero {
    margin-bottom: 0;
}

.about-image-wrapper {
    width: 100%;
    height: 400px;
    background-color: #d4c5b9;
}

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

.about-content {
    background-color: #fff;
}

.intro-paragraph {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.contact-info {
    background-color: #fff;
    padding: 2rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background-color: #f9f6f3;
    border-left: 3px solid #5b2c6f;
}

.contact-item h3 {
    color: #5b2c6f;
    margin-bottom: 0.5rem;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-left: 3px solid #5b2c6f;
}

.thanks-container {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fff;
}

.thanks-container h1 {
    color: #5b2c6f;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.selected-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f6f3;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.cta-button-secondary:hover {
    background-color: #5b2c6f;
    color: #fff;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-update {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

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