* {
    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-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navigation {
    padding: 1rem 2rem;
}

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

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
    font-weight: 500;
}

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

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

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

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

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

.intro-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.intro-content-right h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.services-showcase {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-image {
    flex: 1;
    position: relative;
    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 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.service-details .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-top: auto;
}

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

.booking-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.booking-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-content-left p {
    font-size: 1.2rem;
}

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

.service-form {
    width: 100%;
    max-width: 500px;
}

.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: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #229954;
}

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

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

.trust-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.trust-content-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ecf0f1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #95a5a6;
}

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

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

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

.story-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.story-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

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

.values-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.values-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.team-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.team-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

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

.approach-content-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-content-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.approach-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-about-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.page-hero-center {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.hero-content-center p {
    font-size: 1.3rem;
    color: #34495e;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
}

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

.pricing-note-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.pricing-note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-note-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-note-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

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

.contact-content-left p {
    font-size: 1.2rem;
    color: #34495e;
}

.contact-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: #34495e;
}

.contact-map-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-expectations {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.expectations-content-center h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.expectations-content-center p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-hero {
    padding: 5rem 2rem;
    background-color: #27ae60;
}

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

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

.thanks-content-center p {
    font-size: 1.3rem;
    color: #ffffff;
}

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

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

.thanks-info-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-info-left p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.thanks-service-info {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.service-info-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.service-info-content p {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 600;
}

.thanks-next-steps {
    display: flex;
    min-height: 500px;
}

.thanks-next-steps.reverse {
    flex-direction: row-reverse;
}

.next-steps-image-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.next-steps-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.next-steps-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-contact {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.contact-content-center h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-content-center p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

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

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .booking-split,
    .trust-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .team-split,
    .approach-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-info-split,
    .thanks-details-split,
    .thanks-next-steps {
        flex-direction: column;
    }

    .service-card-split.reverse,
    .intro-split.reverse,
    .trust-split.reverse,
    .story-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse,
    .contact-info-split.reverse,
    .thanks-next-steps.reverse {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-content-right,
    .booking-content-left,
    .trust-content-right,
    .story-content-right,
    .values-content-left,
    .team-content-right,
    .approach-content-left,
    .service-detail-content,
    .contact-content-left,
    .contact-details-left,
    .thanks-info-left,
    .next-steps-content-right {
        padding: 2rem;
    }

    .service-details {
        padding: 2rem;
    }

    .hero-content-left h1,
    .hero-content-center h1,
    .contact-content-left h1,
    .thanks-content-center h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .cta-content-center h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}