.hero-section-new {
    padding: 100px 0;
    padding-bottom: 0;
    text-align: center;
    position: relative;
    margin: 16px;
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.hero-heading {
    font-size: 64px;
    line-height: 1.1;
    color: #0f3b4c;
    margin-bottom: 20px;
}

/* Paragraph */
.hero-subtext {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    color: #003451;
    line-height: 1.6;
}

/* Cards wrapper */
.hero-cards-wrapper {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Card */
.cost-card {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 30px;
    width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
}

/* Title */
.card-title {
    font-size: 26px;
    color: #0f3b4c;
    margin-bottom: 20px;
    text-align: center;
    line-height: 35px;
}

/* Inner box */
.card-box {
    background: #f5f0fd;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Rows */
.row-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    color: #5b7280;
}

.row-item strong {
    color: #0f3b4c;
}

/* Total */
.card-total {
    background: #f5f0fd;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.card-total span {
    display: block;
    font-size: 14px;
    color: #5b7280;
    margin-bottom: 8px;
}

.card-total h2 {
    margin: 0;
    font-size: 28px;
    color: #0f3b4c;
}

/* Button */
.cost-card .btn-primary {
    background: #2f5bea;
    border: none;
    width: 100%;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 991px) {
    .hero-section-new {
        margin: 0;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .cost-card {
        width: 100%;
        max-width: 500px;
        border-radius: 24px;
    }
}
