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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

.nav-menu a:hover {
    color: #7c3aed;
}

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

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

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

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-image {
    flex: 1;
    background: #c5b3e6;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #7c3aed;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #6d28d9;
}

.story-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background: #e9d5ff;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.insight-section {
    background: #1a202c;
    color: #ffffff;
    padding: 100px 40px;
}

.insight-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: center;
}

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.insight-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #cbd5e0;
}

.insight-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.insight-card {
    flex: 1;
    background: #2d3748;
    padding: 40px;
    border-radius: 12px;
}

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

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e0;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #7c3aed;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 12px;
}

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

.approach-image {
    flex: 1;
    background: #fef3c7;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-reveal {
    background: #f8f9fa;
    padding: 100px 40px;
}

.services-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 280px;
    background: #cbd5e0;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
}

.service-select {
    padding: 14px 28px;
    background: #7c3aed;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #6d28d9;
}

.service-select.selected {
    background: #10b981;
}

.testimonials-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.testimonial {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #7c3aed;
}

.booking-section {
    background: #1a202c;
    padding: 100px 40px;
}

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.booking-text {
    flex: 1;
    color: #ffffff;
}

.booking-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.booking-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #cbd5e0;
}

.booking-form-container {
    flex: 1;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #7c3aed;
}

.service-display {
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 16px;
    color: #4a5568;
}

.btn-submit {
    padding: 16px 32px;
    background: #7c3aed;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6d28d9;
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.main-footer {
    background: #f8f9fa;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a202c;
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #4a5568;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #4a5568;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px 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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-btn.reject:hover {
    background: #ffffff;
    color: #2d3748;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

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

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    min-height: 500px;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-container h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a202c;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.page-container ul {
    margin-bottom: 24px;
    padding-left: 32px;
}

.page-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .story-split,
    .approach-split,
    .booking-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .insight-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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