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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f9fafb;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #111827;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4b5563;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2563eb;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #2563eb;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4b5563;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #374151;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.services-booking {
    padding: 80px 0;
    background: #ffffff;
}

.services-booking h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 12px;
    color: #111827;
}

.service-card p {
    margin: 0 20px 16px;
    color: #6b7280;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 20px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.btn-select:hover {
    background: #1d4ed8;
}

.booking-form {
    max-width: 600px;
    margin: 60px auto;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

.booking-form h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111827;
}

.selected-service {
    background: #dbeafe;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 30px;
    color: #1e40af;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
}

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

.hidden {
    display: none;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f9fafb;
}

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
}

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

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

.btn-cookie.reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #4b5563;
}

.page-hero {
    background: #f9fafb;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.values-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.value-item p {
    color: #6b7280;
    line-height: 1.7;
}

.services-detail {
    padding: 60px 0;
}

.service-row {
    display: flex;
    margin-bottom: 80px;
    min-height: 500px;
}

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

.service-info {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9fafb;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.service-info p {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

.features {
    list-style: none;
    margin-bottom: 32px;
}

.features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #374151;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
}

.service-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.info-section {
    padding: 80px 0;
    background: #f9fafb;
}

.info-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.inclusions-grid {
    display: flex;
    gap: 40px;
}

.inclusion-item {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.inclusion-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

.inclusion-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background: #f9fafb;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.contact-info-side p {
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 600;
}

.detail-block p {
    color: #4b5563;
    margin-bottom: 8px;
}

.no-link {
    color: #4b5563;
    font-weight: 500;
}

.note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: 12px;
}

.contact-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.locations-section {
    padding: 80px 0;
    background: #ffffff;
}

.locations-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.locations-grid {
    display: flex;
    gap: 40px;
}

.location-card {
    flex: 1;
    background: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.location-card p {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.location-card .hours {
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

.thanks-section {
    padding: 100px 0;
    background: #f9fafb;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #111827;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 48px;
}

.confirmation-details {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.confirmation-details p {
    color: #374151;
    margin-bottom: 16px;
}

.confirmation-details ul {
    list-style: none;
    margin-top: 20px;
}

.confirmation-details ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #4b5563;
}

.confirmation-details ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.next-steps {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #111827;
}

.next-steps p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #111827;
}

.updated {
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-page p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
    color: #4b5563;
}

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .split-section,
    .service-row,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-text,
    .split-content,
    .service-info,
    .contact-info-side {
        padding: 40px 30px;
    }

    .hero-image,
    .split-image,
    .service-visual,
    .contact-image-side {
        min-height: 300px;
    }

    .services-grid,
    .values-grid,
    .inclusions-grid,
    .locations-grid,
    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        gap: 15px;
        font-size: 14px;
    }

    .hero-text h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 32px;
    }

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