/* ========================================
   CSS CHO TRANG CÁC ĐƠN VỊ HỖ TRỢ
   ======================================== */

/* CSS cho danh sách đơn vị */
.don-vi-list {
    margin: 30px 0 60px 0;
}

.don-vi-item {
    background: #f2f5ff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.don-vi-header {
    background: #f2f5ff;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.don-vi-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.don-vi-icon img {
    width: 100%;
    object-fit: contain;
}

.don-vi-header h3 {
    margin: 0;
    color: #264596;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.don-vi-arrow {
    margin-left: auto;
    color: #264596;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.don-vi-item.active .don-vi-arrow {
    transform: rotate(180deg);
}

.don-vi-content {
    padding: 25px;
    display: none;
    border-top: 1px solid #d7d7d7;
}

.don-vi-content.active {
    display: block;
}

.don-vi-content p {
    margin-bottom: 0;
}

.don-vi-info {
    margin-bottom: 20px;
}

.don-vi-info p {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.don-vi-info strong {
    color: #264596;
    font-weight: 600;
}

.don-vi-description h4 {
    color: #264596;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.don-vi-description p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.breadcrumb-text {
    font-size: 14px;
    color: #000;
    margin: 0;
}

.text-banner {
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    padding-left: 20px;
}

.text-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #264596;
}

/* Responsive */
@media (max-width: 768px) {
    .don-vi-header {
        padding: 15px;
    }
    
    .don-vi-icon {
        width: 40px;
        height: 40px;
    }
    
    .don-vi-icon i {
        font-size: 16px;
    }
    
    .don-vi-header h3 {
        font-size: 16px;
    }
    
    .don-vi-content {
        padding: 20px;
    }
    
    .text-banner {
        font-size: 20px;
    }
}

