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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #4a9eff;
}

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #e0e0e0;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #2c3e50;
}

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

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

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

.trust-indicators {
    background-color: #ffffff;
    padding: 60px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.indicator-grid {
    display: flex;
    justify-content: space-around;
    gap: 48px;
}

.indicator-item {
    text-align: center;
}

.indicator-number {
    font-size: 56px;
    font-weight: 800;
    color: #4a9eff;
    margin-bottom: 12px;
}

.indicator-text {
    font-size: 18px;
    color: #6c757d;
}

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

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

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

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

.split-content-right h2,
.split-content-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a2e;
    line-height: 1.3;
}

.split-content-right p,
.split-content-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.services-showcase {
    padding: 100px 24px;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 80px;
}

.service-card-large {
    display: flex;
    margin-bottom: 80px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f9fa;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #495057;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
    font-size: 18px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.price-label {
    font-size: 15px;
    color: #6c757d;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

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

.service-image-right,
.service-image-left {
    flex: 1;
    overflow: hidden;
    background-color: #34495e;
}

.testimonials-section {
    padding: 100px 24px;
    background-color: #1a1a2e;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #2c3e50;
    border-radius: 12px;
    border-left: 4px solid #4a9eff;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #e0e0e0;
    font-style: italic;
}

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

.cta-section {
    padding: 100px 24px;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.cta-section > .container > p {
    text-align: center;
    font-size: 19px;
    color: #6c757d;
    margin-bottom: 48px;
}

.service-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

.process-steps {
    margin-top: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    font-size: 28px;
    font-weight: 800;
    color: #4a9eff;
    min-width: 60px;
}

.step-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #ecf0f1;
}

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

.main-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 24px 24px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2c3e50;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 32px;
}

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

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

.cookie-btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #4a9eff;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 16px;
}

.service-selected {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 24px 0;
}

.contact-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.info-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
}

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

.legal-page h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #495057;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card-large,
    .process-section,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .split-content-right,
    .split-content-left,
    .service-content-left,
    .service-content-right {
        padding: 40px 24px;
    }

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

    .services-showcase h2,
    .testimonials-section h2 {
        font-size: 32px;
    }

    .indicator-grid,
    .testimonial-cards,
    .footer-container {
        flex-direction: column;
        gap: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

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