* {
    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;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #34495e;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

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

.split-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 70vh;
}

.split-normal {
    display: flex;
    min-height: 70vh;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    margin-top: 15px;
    transition: border-color 0.3s;
}

.cta-inline:hover {
    border-color: #2980b9;
}

.services-preview {
    padding: 90px 60px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.service-cards-split {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px 25px;
    display: block;
}

.service-card .cta-secondary {
    display: block;
    text-align: center;
    padding: 14px 0;
    background-color: #34495e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: auto;
}

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

.testimonial-section {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.testimonial-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.footer-split {
    display: flex;
    gap: 50px;
    padding: 70px 60px 50px 60px;
    background-color: #2c3e50;
    color: #ecf0f1;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

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

.disclaimer {
    padding: 30px 60px;
    background-color: #ecf0f1;
    border-top: 1px solid #bdc3c7;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #6c7a7d;
}

.page-header-split {
    display: flex;
    min-height: 50vh;
}

.header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #f8f9fa;
}

.header-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.header-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    max-width: 520px;
}

.header-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.services-detailed {
    padding: 40px 0;
}

.service-item-split {
    display: flex;
    min-height: 60vh;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.service-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.service-content ul {
    margin: 20px 0 30px 25px;
}

.service-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 25px;
    padding: 20px 0;
    border-top: 2px solid #ecf0f1;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.price-value {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
}

.cta-section-split {
    display: flex;
    background-color: #3498db;
    padding: 60px;
    align-items: center;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    color: #ecf0f1;
    line-height: 1.6;
}

.cta-action {
    flex: 0 0 auto;
}

.cta-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-large:hover {
    background-color: #ecf0f1;
}

.about-story-split {
    display: flex;
    min-height: 65vh;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.values-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.team-split {
    display: flex;
    min-height: 65vh;
}

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.team-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #ffffff;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.process-section-split {
    display: flex;
    min-height: 65vh;
    flex-direction: row-reverse;
}

.process-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
    background-color: #f8f9fa;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.process-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.process-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.mission-split {
    padding: 80px 60px;
    background-color: #34495e;
    text-align: center;
}

.mission-split h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.mission-split p {
    font-size: 19px;
    line-height: 1.8;
    color: #ecf0f1;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    padding: 70px 60px;
    gap: 60px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-details h2 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-block h3 {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.location-description {
    padding: 70px 60px;
    background-color: #f8f9fa;
}

.location-description h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.location-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.location-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.thanks-section-split {
    display: flex;
    min-height: 75vh;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 25px;
    color: #27ae60;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
    max-width: 580px;
}

.thanks-info {
    margin: 30px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 6px;
    max-width: 580px;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.thanks-info ul {
    margin-left: 25px;
}

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.legal-page {
    padding: 70px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 18px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid #3498db;
}

.legal-page a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .split-reverse,
    .split-normal,
    .page-header-split,
    .service-item-split,
    .about-story-split,
    .team-split,
    .process-section-split,
    .contact-info-split,
    .thanks-section-split,
    .cta-section-split {
        flex-direction: column;
    }

    .split-nav {
        padding: 15px 25px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content,
    .split-text,
    .header-text,
    .service-content,
    .story-text,
    .team-text,
    .process-text,
    .thanks-content {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-preview,
    .testimonial-section,
    .form-section,
    .values-section,
    .location-description {
        padding: 60px 30px;
    }

    .footer-split {
        padding: 50px 30px 30px 30px;
    }

    .disclaimer {
        padding: 25px 30px;
    }

    .cookie-banner {
        padding: 20px 25px;
    }

    .legal-page {
        padding: 50px 30px;
    }
}