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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    flex-wrap: wrap;
}

.header-left .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ad-notice {
    font-size: 0.75rem;
    color: #cccccc;
    padding: 0.3rem 0.8rem;
    border: 1px solid #555555;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

.hero-left h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    background-color: #e8eaf0;
    overflow: hidden;
}

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

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

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

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

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

.intro-left h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.intro-left p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.intro-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

.services-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-header-center p {
    font-size: 1.1rem;
    color: #666666;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    max-width: 550px;
    display: flex;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    flex: 0 0 200px;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.service-info p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.btn-select-service {
    padding: 0.8rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section-split {
    display: flex;
    min-height: 500px;
    background-color: #2c3e50;
}

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

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background-color: #34495e;
    display: flex;
    align-items: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555555;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

.trust-left h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555555;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

.about-hero-left {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

.about-hero-right h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.about-hero-right p {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.8;
}

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

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

.story-left h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-left p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.story-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

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

.values-left h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.values-left p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.values-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

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

.team-left h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.team-left p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.team-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

.cta-split {
    padding: 5rem 5%;
    background-color: #2c3e50;
}

.cta-content-center {
    text-align: center;
    color: #ffffff;
}

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

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-header-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

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

.services-header-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-header-left p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-header-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

.services-header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 2rem;
}

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

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

.service-detail-left h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.service-detail-left p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.price-detail {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 1.5rem;
}

.service-detail-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

.booking-cta-split {
    padding: 5rem 5%;
    background-color: #3498db;
}

.booking-cta-content {
    text-align: center;
    color: #ffffff;
}

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

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

.contact-hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-hero-left p {
    font-size: 1.2rem;
}

.contact-hero-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

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

.contact-info-left h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

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

.contact-block p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.8;
}

.contact-info-right {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

.location-split {
    display: flex;
    min-height: 450px;
}

.location-left {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

.location-right h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.location-right p {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 1rem;
}

.contact-cta-split {
    padding: 5rem 5%;
    background-color: #3498db;
}

.contact-cta-content {
    text-align: center;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.thanks-left {
    flex: 1;
    background-color: #d5d8dc;
    overflow: hidden;
}

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

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

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

.thanks-right p {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

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

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

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

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

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    padding: 1.5rem;
    background-color: #2c2c2c;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .services-intro-split,
    .form-section-split,
    .trust-split,
    .about-hero-split,
    .story-split,
    .values-split,
    .team-split,
    .services-header-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-info-split,
    .location-split,
    .thanks-section-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        min-width: 100%;
    }

    .service-image {
        flex: 0 0 200px;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}