.content-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.section-title {
    color: #d9534f;
    font-weight: bold;
}

.license-upload label {
    font-weight: 600;
    margin-top: 15px;
}

.news-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.news-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.news-item a {
    color: #d35400;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.news-item a:hover {
    text-decoration: underline;
}
.license-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    height: 100%;
}

.license-card img {
    max-height: 260px;
    object-fit: contain;
}
/* ================= SIDEBAR RIGHT ================= */
.sidebar-box {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= WHY CHOOSE ================= */
.sidebar-box h4 {
    color: #dc3545;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/img/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================= SUPPORT 24/7 ================= */
.support-box {
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: #fff;
}

.support-title {
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-phone {
    font-size: 20px;
    font-weight: 700;
    color: #0a6847;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .sidebar-box {
        margin-top: 20px;
    }
}