/* Appeal Section Styling */
.appeal {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Heading Styling */
.appeal h2 {
    font-size: 34px;
    font-weight: 600;
    color: #bb1f1f;
    margin-bottom: 20px;
}

.appeal h3 {
    font-size: 24px;
    font-weight: 500;
    color: #0071E3;
    margin-top: 30px;
    padding: 10px 0;
    border-bottom: 2px solid #0071E3;
}

/* Paragraph & List Styling */
.appeal p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.appeal ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.appeal ul li {
    font-size: 18px;
    color: #444;
    padding-left: 20px;
    position: relative;
    text-align: left;
    margin: 10px 0;
}

/* Bullet Point Styling */
.appeal ul li::before {
    content: "•";
    color: #0071E3;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Highlighted Text */
.appeal strong {
    color: #E10600;
    font-weight: 600;
}

/* Bank Details Section */
.appeal h3 + p {
    font-weight: 500;
    font-size: 20px;
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .appeal {
        padding: 20px;
        margin: 30px auto;
    }

    .appeal h2 {
        font-size: 28px;
    }

    .appeal h3 {
        font-size: 22px;
        padding: 8px 0;
    }

    .appeal p,
    .appeal ul li {
        font-size: 16px;
    }
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .appeal {
        padding: 15px;
        margin: 20px auto;
    }

    .appeal h2 {
        font-size: 24px;
    }

    .appeal h3 {
        font-size: 20px;
    }

    .appeal p,
    .appeal ul li {
        font-size: 14px;
    }
}
