/* Content Cards */
    .details-card {
        border: none;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        background: #ffffff;
        margin-bottom: 24px;
        border-left: 5px solid #FF9933;
    }

    .section-title {
        color: #FF9933;
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
    }

    .section-title i {
        color: #FF9933;
        margin-right: 12px;
    }

    .sticky-sidebar {
        top: 20px;
    }

    .quick-info-box {
        background-color: #fff9f2;
        border: 1px solid #FF9933;
        border-radius: 12px;
        padding: 20px;
    }

    .info-row {
        display: flex;
        margin-bottom: 15px;
        align-items: flex-start;
    }

    .info-icon-wrapper {
        min-width: 35px;
        color: #138808;
        /* BJP Green */
        font-size: 1.1rem;
    }

    /* List Items */
    .benefit-list {
        list-style: none;
        padding-left: 0;
    }

    .benefit-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .benefit-list li::before {
        content: "\f270";
        /* Bootstrap Check-Circle icon */
        font-family: "bootstrap-icons";
        position: absolute;
        left: 0;
        color: #138808;
        font-weight: bold;
    }

    .btn-apply-main {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all .25s ease;
}

.btn-apply-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ff6a00, #ffa726);
}
