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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2563eb;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #374151;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1e293b;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.75), rgba(37, 99, 235, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 21px;
    margin-bottom: 40px;
    line-height: 1.7;
    color: #e0e7ff;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
    text-decoration: none;
}

.problem-section {
    padding: 100px 20px;
    background-color: #fff;
}

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

.content-block h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 700;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.8;
}

.stat-cards {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

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

.stat-label {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.4;
}

.story-section {
    padding: 90px 20px;
    background-color: #f8fafc;
}

.section-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1e293b;
    text-align: center;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #475569;
    line-height: 1.8;
}

.story-image {
    margin: 45px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background-color: #e2e8f0;
}

.story-image img {
    width: 100%;
}

.solution-section {
    padding: 100px 20px;
    background-color: #fff;
}

.solution-section .section-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.solution-content {
    flex: 1;
}

.section-label {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.solution-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1e293b;
    line-height: 1.2;
}

.solution-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #475569;
    line-height: 1.7;
}

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

.benefit-list li {
    font-size: 16px;
    color: #334155;
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 20px;
}

.solution-visual {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    background-color: #e2e8f0;
}

.solution-visual img {
    width: 100%;
}

.process-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
}

.section-container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: #1e293b;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 35px 28px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 52px;
    font-weight: 800;
    color: #dbeafe;
    margin-bottom: 15px;
    line-height: 1;
}

.process-step h3 {
    font-size: 21px;
    margin-bottom: 15px;
    color: #1e293b;
}

.process-step p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.trust-section {
    padding: 100px 20px;
    background-color: #fff;
}

.trust-section .section-container {
    display: flex;
    gap: 70px;
    align-items: center;
}

.trust-section img {
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    background-color: #e2e8f0;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1e293b;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #475569;
    line-height: 1.8;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-point {
    display: flex;
    flex-direction: column;
    background-color: #f1f5f9;
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.trust-point strong {
    font-size: 32px;
    color: #1e40af;
    margin-bottom: 5px;
}

.trust-point span {
    font-size: 15px;
    color: #64748b;
}

.testimonials-section {
    padding: 90px 20px;
    background-color: #f8fafc;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1e293b;
    text-align: center;
}

.testimonial {
    background-color: #fff;
    padding: 35px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border-left: 4px solid #2563eb;
}

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

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

.services-reveal-section {
    padding: 100px 20px;
    background-color: #fff;
}

.services-reveal-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1e293b;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    gap: 35px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8fafc;
    padding: 40px 32px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.service-card.featured {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: #fff;
    border-color: #1e40af;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: #fff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #fbbf24;
    color: #78350f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 25px;
    color: #64748b;
    line-height: 1.6;
}

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

.service-features li {
    font-size: 14px;
    color: #475569;
    padding: 10px 0 10px 25px;
    position: relative;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 20px;
    font-weight: 700;
}

.service-card.featured .service-features li:before {
    color: #93c5fd;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
    text-align: center;
}

.service-card.featured .service-price {
    color: #fff;
}

.select-service-btn {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-card.featured .select-service-btn {
    background-color: #fff;
    color: #1e40af;
}

.service-card.featured .select-service-btn:hover {
    background-color: #f1f5f9;
}

.additional-services {
    background-color: #f1f5f9;
    padding: 40px;
    border-radius: 12px;
}

.additional-services h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #1e293b;
}

.additional-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.additional-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 16px;
}

.additional-service strong {
    color: #334155;
}

.additional-service span {
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.form-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 17px;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-form {
    background-color: #fff;
    padding: 45px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    background-color: #2563eb;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta-section {
    padding: 90px 20px;
    background-color: #f8fafc;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e293b;
}

.final-cta-section p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-button-alt {
    display: inline-block;
    background-color: #1e40af;
    color: #fff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-button-alt:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    text-decoration: none;
}

.main-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cbd5e1;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #1d4ed8;
}

.cookie-btn.reject {
    background-color: #475569;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #334155;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .solution-section .section-container {
        flex-direction: column;
    }

    .trust-section .section-container {
        flex-direction: column;
    }

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

    .stat-cards {
        flex-direction: column;
    }

    .process-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

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

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