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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-left,
.split-right {
    flex: 1;
}

.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-split p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-btn.primary {
    background-color: var(--secondary-color);
    color: white;
}

.cta-btn.primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-btn.secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.cta-btn.large {
    padding: 18px 40px;
    font-size: 18px;
}

.value-split,
.approach-split,
.testimonial-split,
.expertise-split,
.form-split,
.final-cta-split,
.service-detail-split,
.booking-split,
.contact-info-split,
.response-split,
.faq-split,
.location-split,
.story-split,
.philosophy-split,
.team-split,
.values-split,
.cta-split {
    padding: 80px 0;
}

.value-split {
    background-color: white;
}

.approach-split {
    background-color: var(--light-bg);
}

.testimonial-split {
    background-color: white;
}

.expertise-split {
    background-color: var(--light-bg);
}

.form-split {
    background-color: white;
}

.final-cta-split {
    background-color: var(--primary-color);
    color: white;
}

.final-cta-split h2 {
    color: white;
}

.final-cta-split p {
    color: #ecf0f1;
}

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

h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.approach-list,
.skills-list {
    list-style: none;
    margin: 25px 0;
}

.approach-list li,
.skills-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    line-height: 1.6;
}

.approach-list li:before,
.skills-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 15px;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--secondary-color);
}

.services-preview {
    padding: 80px 0;
    background-color: white;
}

.content-center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 15px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.testimonial-content blockquote {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.testimonial-content blockquote p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.stats-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666;
}

.event-form {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-note {
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}

.site-footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-accept:hover {
    background-color: #27ae60;
}

.cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-reject:hover {
    background-color: white;
    color: var(--primary-color);
}

.cookie-buttons a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-buttons a:hover {
    text-decoration: underline;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.page-hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.page-hero-split h1 {
    color: white;
}

.page-hero-split p {
    color: #f0f0f0;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    margin: 15px 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.price-display {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-details {
    margin: 30px 0;
}

.detail-item {
    margin-bottom: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.detail-item p {
    margin-bottom: 10px;
}

.hours-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.faq-item p {
    margin-bottom: 0;
}

.map-placeholder {
    background: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-split {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thanks-split .split-container {
    align-items: flex-start;
}

.thanks-split .split-left {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-split h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    color: #f0f0f0;
    font-size: 18px;
    margin-bottom: 30px;
}

.selected-service {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    color: white;
}

.next-steps {
    background: white;
    padding: 35px;
    border-radius: 10px;
}

.next-steps h2 {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    font-size: 15px;
}

.continue-browsing {
    padding: 60px 0;
    background-color: white;
}

.browse-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.update-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-container ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 10px;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 14px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-split h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .services-grid {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        flex-wrap: wrap;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .legal-container {
        padding: 30px 20px;
    }

    .browse-links {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}