/* ── Navbar brand images ── */
.navbar-brand-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.navbar-brand-mobile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    display: none;
}

@media (max-width: 991px) {
    .navbar-brand-mobile-image {
        display: inline-block;
    }

    .navbar-brand-image {
        display: none;
    }
}

@media (max-width: 776px) {
    .navbar-brand-mobile-image {
        display: none;
    }

    .navbar-brand-image {
        display: inline-block;
    }
}

/* ── Banner ── */
.banner_content {
    height: 270px;
    padding-top: 0;
}

/* ── Page wrapper ── */
.deletion-page {
    padding: 60px 0 80px;
    background: #f9f9f9;
}

/* ── Content box ── */
.form-content-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* slightly softer shadow */
}

.form-content-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.form-content-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.form-content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.form-content-box ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ── Info box (alert style) ── */
.info-box {
    background: #eef5fc;
    border-left: 5px solid #0056b3;
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-box h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0056b3;
}

.info-box p {
    margin-bottom: 0;
    color: #444;
}

/* ── Contact Section ── */
.contact-section {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.contact-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* ─ Buttons ─ */
.btn-primary-custom {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

/* Responsive tweaks for content box */
@media (max-width: 767px) {
    .form-content-box {
        padding: 30px 20px;
    }
}

/* ── Info card at the top ── */
.app-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 40px;
    border-left: 5px solid #f86823;
}

.app-info-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 20px;
}

.app-info-table {
    width: 100%;
    border-collapse: collapse;
}

.app-info-table td {
    padding: 10px 14px;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.app-info-table td:first-child {
    font-weight: 600;
    color: #1b1a1a;
    width: 40%;
    white-space: nowrap;
}

.app-info-table tr:last-child td {
    border-bottom: none;
}

/* ── Section cards ── */
.policy-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.policy-card .section-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f86823, #ff8e53);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.policy-card .section-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.policy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 14px;
}

.policy-card p,
.policy-card li {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
}

.policy-card ul,
.policy-card ol {
    padding-left: 20px;
    margin-bottom: 0;
}

.policy-card li {
    margin-bottom: 8px;
}

/* ── Step list (numbered) ── */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.step-list li::before {
    content: counter(step-counter);
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f86823, #ff8e53);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Contact highlight ── */
.contact-highlight {
    background: linear-gradient(135deg, #f86823, #ff8e53);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    color: #fff;
    margin-bottom: 28px;
}

.contact-highlight h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.contact-highlight p {
    font-size: 1rem;
    margin-bottom: 18px;
    opacity: 0.92;
}

.contact-highlight a {
    display: inline-block;
    background: #fff;
    color: #f86823;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-highlight a:hover {
    background: #1b1a1a;
    color: #fff;
}

/* ── Page heading ── */
.page-heading {
    text-align: center;
    margin-bottom: 48px;
}

.page-heading h6 {
    color: #f86823;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.page-heading h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1b1a1a;
    margin-bottom: 14px;
}

.page-heading p {
    font-size: 1.05rem;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Badge ── */
.badge-pill-custom {
    display: inline-block;
    background: #fff3ec;
    color: #f86823;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid #f8d5c0;
}

@media (max-width: 576px) {

    .app-info-card,
    .policy-card {
        padding: 24px 20px;
    }

    .page-heading h1 {
        font-size: 1.5rem;
    }

    .contact-highlight {
        padding: 28px 20px;
    }
}