:root {
    --brand-blue: #0b72d1;
    --soft-blue: #eef7fb;
    --mint: #1fb28a;
    --accent-green: #10b981;
    --card-bg: #ffffff;
    --muted: #6b7280;
    --pink-banner: #ffeef0;
}

body {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #0f1724;
}

.logo_img {
    max-height: 60px;
}

header {
    background: #eaf4f3;
}

.topbar {
    background: transparent;
    padding: 12px 0
}

.logo {
    font-weight: 700;
    color: var(--brand-blue);
}

.hero {
    padding: 60px 0;
    background: #eaf4f3;
}

.hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px
}

.hero p.lead {
    color: var(--mint);
    font-weight: 600
}

.card-pricing {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 36, .06);
    box-shadow: 0 6px 18px rgba(12, 32, 63, 0.04)
}

.price {
    font-weight: 700;
    font-size: 26px
}

.btn-cta {
    background: linear-gradient(90deg, #198754, #03ad98);
    color: #fff;
    border: none;
    font-weight: bold;
}

.btn-ghost {
    background: #fff;
    border: 1px solid #198754;
    color: #198754;
    font-weight: bold;
}

.pink-banner {
    padding-bottom: 40px;
}

.tests .feature {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 36, .05);
    min-height: 155px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.8rem;
}

.why .item {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 36, .04);
    text-align: center
}

.why .item i {
    font-size: 32px;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.cta-box {
    border: 1px solid rgba(15, 23, 36, .06);
    border-radius: 12px;
    padding: 28px;
    background: #eaf4f3;
}

footer {
    padding: 28px 0;
    color: var(--muted);
    background: #eaf4f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.btn:hover {
    background: orange;
}

.light_green_bg {
    background: #eaf4f3;
}

.padding_60 {
    padding: 60px 0;
}

.image_box_banner {
    position: relative;
}

.free_box_holder {
    background: #ffeef0;
    text-align: center;
    margin: 0 auto 20px auto;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
    min-height: 220px;
}

.bold_span {
    font-size: 1.8rem;
    font-weight: bold;
}

.free_box_holder strong {
    font-size: 1.5rem;
}

.small.text-muted strong {
    font-size: 1rem;
}

.heart_box_icon {
    width: 140px;
    text-align: right;
}

.heart_box_icon .fa-3x {
    font-size: 2.5em;
}

@media (max-width:767px) {

    .package_row .small,
    .package_row small {
        font-size: 0.65em;
    }

    .package_row .col-sm-6 {
        width: 50%;
    }

    .hero {
        padding: 28px 0;
        text-align: center;
    }

    .card-pricing {
        text-align: left;
    }

    .hero h1 {
        font-size: 26px
    }

    .price {
        font-size: 20px
    }

    .heart_box_icon {
        width: 90px;
    }

    .heart_box_icon .fa-3x {
        font-size: 2em;
    }

    .btn-cta {
        font-size: 15px;
    }

    .p-3 {
        padding: 0.7rem 0.5rem !important;
    }

    .section-title {
        font-size: 1.4rem;
        line-height: normal;
    }

    .free_box_holder strong {
        font-size: 1.3rem;
    }

    .bold_span {
        font-size: 1.8rem;
    }

    .small.text-muted strong {
        font-size: 0.8rem;
    }

    .free_box_holder {
        min-height: fit-content;
    }

    .pink-banner {
        padding-bottom: 20px;
    }
    .tests .feature{
        min-height: fit-content;
    }
}