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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4556d;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

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

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

.hero-left p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #e8dcd5;
}

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

.cta-primary {
    display: inline-block;
    background-color: #d4556d;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #ba4559;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #d4556d;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #d4556d;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

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

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-image {
    flex: 1;
    background-color: #f0e8e3;
}

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

.info-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.info-content h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

.info-content p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #faf8f7;
}

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

.section-header h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px 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 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    background-color: #e8dcd5;
    height: 220px;
}

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

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

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

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

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.form-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.form-content h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.form-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.form-image {
    flex: 1;
    background-color: #f0e8e3;
}

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

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

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

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

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

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

.why-us {
    padding: 5rem 2rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3.5rem;
}

.benefits-container {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #faf8f7;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #d4556d;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.site-footer {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 3.5rem 2rem 1.5rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

.footer-section ul li a:hover {
    color: #d4556d;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #3a3a3a;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c0c0c0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #d4556d;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #2c2c2c;
    min-width: 280px;
}

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

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

.cookie-btn.accept:hover {
    background-color: #ba4559;
    transform: translateY(-2px);
}

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

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

.page-hero {
    background: linear-gradient(135deg, #f0e8e3 0%, #e8dcd5 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.2rem;
    color: #5a5a5a;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    gap: 0;
}

.about-text {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

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

.about-image {
    flex: 1;
    background-color: #e8dcd5;
}

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

.values-section {
    padding: 5rem 2rem;
    background-color: #faf8f7;
}

.values-section h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.value-card {
    flex: 1;
    min-width: 260px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #d4556d;
    margin-bottom: 1.2rem;
}

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

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

.team-text {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.8rem;
}

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

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

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

.philosophy-content h2 {
    font-size: 2.6rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

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

.cta-section h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

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

.service-features ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: #5a5a5a;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4556d;
    font-weight: 700;
}

.service-price-block {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #d4556d;
}

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

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

.additional-info {
    padding: 4rem 2rem;
    background-color: #faf8f7;
    text-align: center;
}

.additional-info h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.additional-info p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #d4556d;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
}

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

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

.location-details {
    padding: 4rem 2rem;
    background-color: #faf8f7;
}

.location-details h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.location-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-method {
    flex: 1;
    min-width: 280px;
}

.location-method h3 {
    font-size: 1.5rem;
    color: #d4556d;
    margin-bottom: 1rem;
}

.location-method p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.visit-info {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.visit-content .cta-primary {
    margin-top: 2rem;
}

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

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #d4556d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 2.4rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #faf8f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.thanks-next ul {
    text-align: left;
    list-style: none;
    margin-bottom: 2.5rem;
}

.thanks-next ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: #5a5a5a;
    font-size: 1rem;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4556d;
    font-weight: 700;
}

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

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

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #faf8f7;
    border-left: 4px solid #d4556d;
}

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

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

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

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .hero-split,
    .info-split,
    .form-split,
    .about-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .info-content,
    .form-content,
    .about-text,
    .team-text,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-right,
    .info-image,
    .form-image,
    .about-image,
    .team-image,
    .service-detail-image,
    .contact-image {
        min-height: 400px;
    }

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

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

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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