* {
    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: #333;
    background-color: #fff;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #999;
    background-color: #f5f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background-color: #f9f7f6;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e8ddd8;
}

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

.cta-button {
    display: inline-block;
    background-color: #c9969e;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.cta-button.secondary {
    background-color: #fff;
    color: #c9969e;
    border: 2px solid #c9969e;
}

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

.intro-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.image-block {
    flex: 1;
    background-color: #f0ebe9;
}

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

.content-block {
    flex: 1;
    padding: 2rem;
}

.content-block h2 {
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-highlight {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 1.5rem 1.5rem 1rem;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c9969e;
    margin: 1rem 1.5rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    background-color: #2c2c2c;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us-split {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9969e;
    font-weight: 700;
    font-size: 1.2rem;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: #f9f7f6;
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #c9969e;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background-color: #c9969e;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #c9969e;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c9969e;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
}

.disclaimer {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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;
}

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

.cookie-content a {
    color: #c9969e;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #c9969e;
    color: #fff;
}

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

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

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

.page-header {
    background-color: #f9f7f6;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c2c2c;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 1rem auto 0;
}

.about-intro {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.values-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f7f6;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

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

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.service-detail {
    margin-bottom: 5rem;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c9969e;
    margin-bottom: 1.5rem;
}

.service-detail .content-block h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-detail .content-block ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail .content-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #555;
}

.service-detail .content-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c9969e;
    font-weight: 700;
    font-size: 1.4rem;
}

.booking-cta {
    padding: 5rem 2rem;
    background-color: #f9f7f6;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.booking-cta p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-main {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #555;
    font-size: 1.05rem;
}

.contact-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-note p {
    color: #666;
    margin-bottom: 1rem;
}

.directions-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.directions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.directions-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.direction-card h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.direction-card p {
    color: #666;
    margin-bottom: 0.8rem;
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

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

.thanks-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

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

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

.legal-page {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.update-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #c9969e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #b38790;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f9f7f6;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c2c2c;
    border-bottom: 2px solid #e0e0e0;
}

.cookie-table td {
    padding: 1rem;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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