* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.nav-left .brand {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-right a:hover {
    color: #e74c3c;
}

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

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

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.hero-image {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.split-reverse,
.split-normal {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

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

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

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.split-text ul {
    margin: 24px 0;
}

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

.process-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
}

.process-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.citation {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    margin-left: 2px;
}

.citation:hover {
    text-decoration: underline;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-intro p {
    font-size: 19px;
    color: #5a6c7d;
}

.service-cards-split {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    padding: 24px 28px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    padding: 0 28px 20px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    padding: 0 28px 28px;
}

.testimonials-split {
    padding: 90px 60px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonials-split h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonial-grid {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 15px;
    color: #bdc3c7;
    font-weight: 600;
}

.form-split {
    display: flex;
    min-height: 75vh;
    align-items: stretch;
    background: #ecf0f1;
}

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

.form-info h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-info p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #ecf0f1;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    font-size: 16px;
    padding-left: 28px;
    position: relative;
}

.benefit-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 60px;
}

#contactForm {
    width: 100%;
    max-width: 480px;
}

#contactForm label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 20px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.btn-submit {
    width: 100%;
    margin-top: 28px;
    padding: 16px;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 50px 60px;
    background: #f8f9fa;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-references {
    max-width: 1400px;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 10px;
}

.footer-references a {
    color: #e74c3c;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.cookie-accept:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.thanks-highlight {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #e74c3c;
}

.thanks-highlight p {
    font-size: 17px;
    color: #2c3e50;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #34495e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.legal-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0 16px 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

.contact-map {
    flex: 1;
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.contact-info-box {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 16px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-item p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.7;
}

.full-width-section {
    padding: 90px 60px;
    background: #f8f9fa;
}

.full-width-section h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.service-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item-detailed {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 14px;
    font-weight: 600;
}

.service-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.service-price-box {
    min-width: 160px;
    text-align: right;
}

.service-price-box .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    padding: 0;
}

.about-hero {
    padding: 100px 60px;
    text-align: center;
    background: #f8f9fa;
}

.about-hero h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .split-reverse,
    .split-normal,
    .form-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .split-text,
    .form-info,
    .form-container,
    .contact-info-box {
        padding: 50px 30px;
    }

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

    .service-cards-split,
    .testimonial-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-item-detailed {
        flex-direction: column;
    }

    .service-price-box {
        text-align: left;
    }
}