* {
    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: #2c3e50;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: #f8f9fa;
}

.hero-text {
    max-width: 550px;
}

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

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background: #e8ecef;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #34495e;
}

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

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

.intro-image {
    flex: 1;
    background: #e8ecef;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.trust-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

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

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.trust-item p {
    color: #555;
    line-height: 1.7;
}

.services-split {
    padding: 4rem 2rem;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.15rem;
    color: #555;
}

.services-list {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    margin-bottom: 3rem;
    min-height: 450px;
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background: #e8ecef;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-duration {
    font-weight: 600;
    color: #7f8c8d;
}

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

.select-service {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.select-service:hover {
    background: #2980b9;
}

.form-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

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

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.booking-form {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #34495e;
}

.testimonials-split {
    padding: 4rem 2rem;
}

.testimonial-block {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 3rem;
    min-height: 400px;
}

.testimonial-block.reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.testimonial-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 1rem;
}

.testimonial-image {
    flex: 1;
    background: #e8ecef;
    overflow: hidden;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.disclaimer strong {
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 4rem 2rem;
}

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

.hero-text-side {
    flex: 1;
}

.hero-text-side h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text-side p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.hero-image-side {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.story-section {
    padding: 3rem 2rem;
}

.story-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 3rem;
    align-items: center;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.team-section {
    padding: 4rem 2rem;
}

.split-layout-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.team-intro {
    flex: 1;
}

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.team-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

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

.services-hero {
    background: #f8f9fa;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.services-full {
    padding: 4rem 2rem;
}

.service-item {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

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

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

.service-visual {
    flex: 1;
    background: #e8ecef;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-subtitle {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-info > p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.6;
}

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

.service-meta {
    margin: 1.5rem 0;
}

.service-price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0.5rem;
}

.booking-cta-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #34495e;
}

.contact-page {
    padding: 4rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

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

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 600px;
}

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

.contact-map-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.thanks-page {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.thanks-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.thanks-message {
    flex: 1;
}

.thanks-message h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-main {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.next-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #34495e;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c3e50;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 1;
    background: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card,
    .split-form,
    .testimonial-block,
    .split-hero,
    .story-split,
    .split-layout-section,
    .split-service,
    .split-contact,
    .thanks-content {
        flex-direction: column;
    }

    .service-card.reverse,
    .intro-split.reverse,
    .testimonial-block.reverse,
    .story-split.reverse,
    .split-service.reverse {
        flex-direction: column;
    }

    .hero-text h1,
    .hero-text-side h1,
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .nav-menu {
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

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

    .thanks-image,
    .hero-image-side,
    .story-image,
    .team-image,
    .contact-visual {
        height: 300px;
    }
}