* {
    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: #333;
    background-color: #fff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #1a1a1a;
}

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

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

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #dfe6e9;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

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

.benefits-split {
    display: flex;
}

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

.benefits-left,
.benefits-right {
    flex: 1;
}

.benefits-left {
    background-color: #ecf0f1;
}

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

.benefits-right {
    padding: 80px 50px;
}

.benefits-right h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #444;
}

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

.services-preview {
    padding: 80px 50px;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-grid-split {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-card h3 {
    padding: 20px 20px 10px 20px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px 15px 20px;
    color: #555;
    font-size: 15px;
}

.service-card .price {
    display: block;
    padding: 15px 20px 20px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.form-split {
    display: flex;
    background-color: #f8f9fa;
    padding: 80px 0;
}

.form-left,
.form-right {
    flex: 1;
    padding: 0 50px;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.trust-signals {
    margin-top: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.trust-item strong {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.trust-item span {
    font-size: 14px;
    color: #777;
}

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

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: -12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.testimonials-split {
    display: flex;
    padding: 80px 50px;
    gap: 40px;
    background-color: #fff;
}

.testimonial-block {
    flex: 1;
}

.testimonial-block blockquote {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #2c3e50;
    font-style: italic;
    color: #444;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: block;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-header-split {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.page-header-split h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header-split p {
    font-size: 20px;
    color: #ecf0f1;
}

.service-detail-split {
    display: flex;
    padding: 60px 50px;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding-right: 40px;
}

.service-detail-split.reverse .service-detail-left {
    padding-right: 0;
    padding-left: 40px;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-right ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #444;
}

.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 20px;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.price-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.price-unit {
    font-size: 14px;
    color: #666;
}

.cta-full {
    background-color: #34495e;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.cta-full h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    padding: 60px 50px;
}

.about-left {
    flex: 1;
    padding-right: 40px;
}

.about-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.about-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-split {
    display: flex;
    padding: 60px 50px;
    background-color: #f8f9fa;
}

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

.values-left,
.values-right {
    flex: 1;
}

.values-left {
    background-color: #dfe6e9;
}

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

.values-right {
    padding: 40px;
}

.values-right h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 25px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    color: #555;
}

.team-split {
    padding: 80px 50px;
    background-color: #fff;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 18px;
    color: #555;
}

.team-grid {
    display: flex;
    gap: 30px;
}

.team-member {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-member p {
    font-size: 15px;
    color: #555;
}

.stats-split {
    display: flex;
    background-color: #2c3e50;
    padding: 60px 50px;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #bdc3c7;
}

.commitment-split {
    display: flex;
    padding: 60px 50px;
}

.commitment-left {
    flex: 1;
    padding-right: 40px;
}

.commitment-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.commitment-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.commitment-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-split {
    display: flex;
    padding: 60px 50px;
}

.contact-left {
    flex: 1;
    padding-right: 40px;
}

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

.location-info {
    padding: 60px 50px;
    background-color: #f8f9fa;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.location-info > p {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.location-details {
    display: flex;
    gap: 30px;
}

.location-feature {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.location-feature strong {
    display: block;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.location-feature p {
    font-size: 15px;
    color: #555;
}

.thanks-split {
    padding: 80px 50px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.thanks-details {
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 15px;
    color: #555;
}

.thanks-info {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info p {
    font-size: 15px;
    color: #856404;
    margin-bottom: 10px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: #777;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-split,
    .benefits-split,
    .form-split,
    .service-detail-split,
    .about-split,
    .values-split,
    .contact-split,
    .commitment-split {
        flex-direction: column;
    }

    .service-detail-split.reverse,
    .values-split.reverse,
    .benefits-split.reverse {
        flex-direction: column;
    }

    .services-grid-split,
    .team-grid,
    .location-details,
    .testimonials-split,
    .footer-split,
    .stats-split {
        flex-direction: column;
    }

    .service-detail-left,
    .about-left,
    .commitment-left,
    .contact-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .service-detail-split.reverse .service-detail-left {
        padding-left: 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}