:root {
    --primary: #2563eb;
    --accent: #4ade80;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
}

html {
    font-size: 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}



.feature-l {
    background-color: var(--bg-white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

    .feature-l:hover {
        transform: translateY(-4px);
    }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin-bottom: 60px;
}

header {
    text-align: center;
    background-color: #111827;
    color: #ffffff;
}

.pb-3 > header {
    text-align: center;
    background-color: #223357;
    color: #ffffff;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 6px;
}

h1 {
    font-size: 3rem;
    margin: 0.5rem 0;
}

h2 {
    font-size: 1.7rem;
    color: #0f1c14;
}

h3 {
    font-size: 1.25rem;
}



.features-l {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-l {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.cta {
    text-align: center;
    margin: 3rem 0;
}

    .cta button {
        background-color: #4ade80;
        border: none;
        padding: 1rem 2rem;
        font-size: 2rem;
        border-radius: 0.5rem;
        cursor: pointer;
        color: #111827;
        font-weight: 600;
    }

footer {
    text-align: center;
    padding: 2rem;
    color: #6b7280;
}

.div_top {
    text-align: center;
    background-color: #233869;
    color: #ffffff;
    border-radius: 13px;
    padding-bottom: 7px;
    padding-top: 7px;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 52px;
}

h1 {
    font-size: 2.75rem;
    margin: 0.5rem 0;
}

.subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0.5rem auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .plan:hover {
        transform: translateY(-5px);
        border-color: #4ade80;
    }

    .plan h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #10b981;
    margin: 1rem 0 1.5rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    height: 218px;
}

    .features li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
        color: #374151;
    }

.plan button {
    background-color: #4ade80;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    cursor: pointer;
    color: #111827;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .plan button:hover {
        background-color: #22c55e;
    }

.how-horizontal {
    margin: 50px 0 auto auto;
    padding: 0 1rem;
    text-align: center;
}

.how-horizontal-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #111827;
}

.how-horizontal-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 1rem;
}

.how-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 280px;
    max-width: 100%;
    text-align: left;
    position: relative;
}

.step-number {
    background-color: #4ade80;
    color: #111827;
    font-weight: bold;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.how-step h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.how-step p {
    font-size: 1rem;
    color: #4b5563;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #4ade80;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .how-horizontal-flow {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
}

.faq-section, .contact-form-section {
    margin: 3rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.faq h3 {
    margin-top: 2rem;
    color: #111827;
    font-size: 1.1rem;
}

.faq p {
    color: #4b5563;
    margin-top: 0.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.75rem;
        border-radius: 0.5rem;
        border: 1px solid #d1d5db;
        font-size: 1rem;
    }

    .contact-form label {
        font-weight: 600;
        color: #111827;
    }

.btn-submit {
    background-color: #4ade80;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .btn-submit:hover {
        background-color: #22c55e;
    }

a {
    color: #111827 !important;
}

.hero-banner {
    margin-top: 69px;
    background: linear-gradient(135deg, #dfe3ef, #6b9ef1);
    padding: 28px 14px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .hero-banner::after {
        content: '';
        position: absolute;
        width: 160%;
        height: 160%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        top: -30%;
        left: -30%;
        pointer-events: none;
    }

.hero-title {
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1e3a8a;
}

button, .btn-submit, .plan button {
    transform: translateY(-2px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(12, 99, 228, 0.4);
}

    button:hover, .btn-submit:hover, .plan button:hover {
        box-shadow: 0 2px 5px rgba(12, 99, 228, 0.4)
    }


.startnow {
    transform: translateY(-2px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    width:333px;
}

    .startnow :hover {
        box-shadow: 0 2px 5px rgba(34, 197, 94, 0.4)
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-l {
    animation: fadeInUp 0.5s ease-in-out;
}

.features-timeline-vertical {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f0f4ff, #ffffff);
    margin-top: 54px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius:0.5rem;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
    font-weight: 700;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 3px solid #4ade80;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.5s ease-in-out;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 21px;
    width: 0.9rem;
    height: 0.9rem;
    background: #4ade80;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3);
}

.timeline-content {
    background-color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-2px);
 
}

.timeline-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #111827;
}

.timeline-content p {
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
}
